blob: d0463386225f401825041daf62950b4cebc246a3 [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>
刘洪青d49e4942018-08-03 16:08:44 +080049
50 <dependency>
刘洪青d58bc052018-08-06 22:04:56 +080051 <groupId>com.supwisdom.leaveschool</groupId>
52 <artifactId>sample-common</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55
56 <dependency>
刘洪青d49e4942018-08-03 16:08:44 +080057 <groupId>commons-collections</groupId>
58 <artifactId>commons-collections</artifactId>
59 <version>3.2.2</version>
60 </dependency>
刘洪青18c93322018-08-03 18:27:29 +080061
62 <dependency>
63 <groupId>org.json</groupId>
64 <artifactId>json</artifactId>
65 <version>20180130</version>
66 </dependency>
67
刘洪青9cbbda22018-07-19 17:28:37 +080068 </dependencies>
69
70 </dependencyManagement>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080071
72 <modules>
73 <module>foo</module>
74 <module>bar</module>
刘洪青a0bb8a92018-07-19 17:30:07 +080075 <module>security</module>
刘洪青f6b66112018-08-02 15:42:43 +080076
刘洪青d58bc052018-08-06 22:04:56 +080077 <module>common</module>
78
刘洪青f6b66112018-08-02 15:42:43 +080079 <module>auth</module>
80 <module>user</module>
81 <module>gateway</module>
82
83 <module>client</module>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080084 </modules>
85
86</project>