| <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>com.supwisdom.buildcommons</groupId> |
| <artifactId>spring-cloud-parent</artifactId> |
| <version>Finchley.RELEASE-1.0-SNAPSHOT</version> |
| </parent> |
| |
| <groupId>com.supwisdom.leaveschool</groupId> |
| <artifactId>samples-parent</artifactId> |
| <version>0.0.1-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <properties> |
| <maven.deploy.skip>true</maven.deploy.skip> |
| |
| <infras.version>0.0.1-SNAPSHOT</infras.version> |
| </properties> |
| |
| <repositories> |
| <repository> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <id>supwisdom</id> |
| <url>http://app.supwisdom.com/nexus/content/groups/public/</url> |
| </repository> |
| <repository> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| <id>central</id> |
| <url>http://repo.maven.apache.org/maven2</url> |
| </repository> |
| </repositories> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>com.supwisdom.infras</groupId> |
| <artifactId>infras-bom</artifactId> |
| <version>${infras.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.supwisdom.leaveschool</groupId> |
| <artifactId>sample-common</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-collections</groupId> |
| <artifactId>commons-collections</artifactId> |
| <version>3.2.2</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.json</groupId> |
| <artifactId>json</artifactId> |
| <version>20180130</version> |
| </dependency> |
| |
| </dependencies> |
| |
| </dependencyManagement> |
| |
| <modules> |
| <module>foo</module> |
| <module>bar</module> |
| <module>security</module> |
| |
| <module>common</module> |
| |
| <module>auth</module> |
| <module>user</module> |
| <module>gateway</module> |
| |
| <module>client</module> |
| </modules> |
| |
| </project> |