2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-14 08:13:57 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-cloud-security</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>spring-cloud-security</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<parent>
|
2022-01-19 03:00:42 -05:00
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
2022-05-29 10:02:17 -04:00
|
|
|
<artifactId>spring-cloud-modules</artifactId>
|
2022-01-19 03:00:42 -05:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2021-03-28 17:09:32 -04:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
<version>${spring-cloud-dependencies.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<modules>
|
|
|
|
<module>auth-client</module>
|
2019-12-05 09:56:52 -05:00
|
|
|
<module>auth-resource</module>
|
|
|
|
<module>auth-server</module>
|
2019-10-31 21:43:47 -04:00
|
|
|
</modules>
|
|
|
|
|
2020-09-14 14:49:03 -04:00
|
|
|
<properties>
|
2022-08-22 13:17:32 -04:00
|
|
|
<spring-cloud-dependencies.version>2021.0.3</spring-cloud-dependencies.version>
|
2023-10-13 14:23:24 -04:00
|
|
|
<jaxb-core.version>2.3.0.1</jaxb-core.version>
|
|
|
|
<jaxb-api.version>2.3.1</jaxb-api.version>
|
|
|
|
<jaxb-impl.version>2.3.1</jaxb-impl.version>
|
2020-09-14 14:49:03 -04:00
|
|
|
</properties>
|
2021-03-28 17:09:32 -04:00
|
|
|
|
2022-09-13 11:52:49 -04:00
|
|
|
</project>
|