blob: 6675ef5a5e92926aab5acd39df7bb093ede2d636 [file] [log] [blame]
Daniel Qianf6b89ce2018-07-17 18:40:57 +08001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
刘洪青9cbbda22018-07-19 17:28:37 +08006 <parent>
7 <groupId>com.supwisdom.buildcommons</groupId>
刘洪青f6b66112018-08-02 15:42:43 +08008 <artifactId>spring-cloud-parent</artifactId>
9 <version>Finchley.RELEASE-1.0-SNAPSHOT</version>
刘洪青9cbbda22018-07-19 17:28:37 +080010 </parent>
11
Daniel Qianf6b89ce2018-07-17 18:40:57 +080012 <groupId>com.supwisdom.leaveschool</groupId>
刘洪青9cbbda22018-07-19 17:28:37 +080013 <artifactId>samples-parent</artifactId>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080014 <version>0.0.1-SNAPSHOT</version>
15 <packaging>pom</packaging>
16
17 <properties>
18 <maven.deploy.skip>true</maven.deploy.skip>
刘洪青9cbbda22018-07-19 17:28:37 +080019
20 <infras.version>0.0.1-SNAPSHOT</infras.version>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080021 </properties>
刘洪青9cbbda22018-07-19 17:28:37 +080022
23 <repositories>
24 <repository>
25 <snapshots>
26 <enabled>true</enabled>
27 </snapshots>
28 <id>supwisdom</id>
29 <url>http://app.supwisdom.com/nexus/content/groups/public/</url>
30 </repository>
31 <repository>
32 <snapshots>
33 <enabled>false</enabled>
34 </snapshots>
35 <id>central</id>
36 <url>http://repo.maven.apache.org/maven2</url>
37 </repository>
38 </repositories>
39
40 <dependencyManagement>
41 <dependencies>
42 <dependency>
43 <groupId>com.supwisdom.infras</groupId>
44 <artifactId>infras-bom</artifactId>
45 <version>${infras.version}</version>
46 <type>pom</type>
47 <scope>import</scope>
48 </dependency>
49 </dependencies>
50
51 </dependencyManagement>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080052
53 <modules>
54 <module>foo</module>
55 <module>bar</module>
刘洪青a0bb8a92018-07-19 17:30:07 +080056 <module>security</module>
刘洪青f6b66112018-08-02 15:42:43 +080057
58 <module>auth</module>
59 <module>user</module>
60 <module>gateway</module>
61
62 <module>client</module>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080063 </modules>
64
65</project>