mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:14:33 +00:00
- Standardized naming from "Prole" to "Knoe" in README, scripts, and deployment files for consistency. - Refined ingress configuration to adjust class and annotations based on mode. - Enhanced deploy.sh to handle public APP endpoint status for specific hosts.
42 lines
1.2 KiB
XML
42 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>3.1.0</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>org.prole</groupId>
|
|
<artifactId>authority-parent</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>authority-parent</name>
|
|
<description>Parent POM for the Knoe authority modules</description>
|
|
|
|
<properties>
|
|
<java.version>21</java.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>common</module>
|
|
<module>kdc</module>
|
|
<module>prole-auth</module>
|
|
<module>gcp-auth</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.prole</groupId>
|
|
<artifactId>authority-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|