Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 1 | <?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 | |
刘洪青 | 9cbbda2 | 2018-07-19 17:28:37 +0800 | [diff] [blame] | 6 | <parent> |
| 7 | <groupId>com.supwisdom.buildcommons</groupId> |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 8 | <artifactId>spring-cloud-parent</artifactId> |
| 9 | <version>Finchley.RELEASE-1.0-SNAPSHOT</version> |
刘洪青 | 9cbbda2 | 2018-07-19 17:28:37 +0800 | [diff] [blame] | 10 | </parent> |
| 11 | |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 12 | <groupId>com.supwisdom.leaveschool</groupId> |
刘洪青 | 9cbbda2 | 2018-07-19 17:28:37 +0800 | [diff] [blame] | 13 | <artifactId>samples-parent</artifactId> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 14 | <version>0.0.1-SNAPSHOT</version> |
| 15 | <packaging>pom</packaging> |
| 16 | |
| 17 | <properties> |
| 18 | <maven.deploy.skip>true</maven.deploy.skip> |
刘洪青 | 9cbbda2 | 2018-07-19 17:28:37 +0800 | [diff] [blame] | 19 | |
| 20 | <infras.version>0.0.1-SNAPSHOT</infras.version> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 21 | </properties> |
刘洪青 | 9cbbda2 | 2018-07-19 17:28:37 +0800 | [diff] [blame] | 22 | |
| 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> |
刘洪青 | d49e494 | 2018-08-03 16:08:44 +0800 | [diff] [blame] | 49 | |
| 50 | <dependency> |
刘洪青 | d58bc05 | 2018-08-06 22:04:56 +0800 | [diff] [blame] | 51 | <groupId>com.supwisdom.leaveschool</groupId> |
| 52 | <artifactId>sample-common</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
刘洪青 | d49e494 | 2018-08-03 16:08:44 +0800 | [diff] [blame] | 57 | <groupId>commons-collections</groupId> |
| 58 | <artifactId>commons-collections</artifactId> |
| 59 | <version>3.2.2</version> |
| 60 | </dependency> |
刘洪青 | 18c9332 | 2018-08-03 18:27:29 +0800 | [diff] [blame] | 61 | |
| 62 | <dependency> |
| 63 | <groupId>org.json</groupId> |
| 64 | <artifactId>json</artifactId> |
| 65 | <version>20180130</version> |
| 66 | </dependency> |
| 67 | |
刘洪青 | 9cbbda2 | 2018-07-19 17:28:37 +0800 | [diff] [blame] | 68 | </dependencies> |
| 69 | |
| 70 | </dependencyManagement> |
刘洪青 | 342bc5e | 2018-08-20 14:12:38 +0800 | [diff] [blame^] | 71 | |
| 72 | |
| 73 | <build> |
| 74 | <pluginManagement> |
| 75 | <plugins> |
| 76 | <plugin> |
| 77 | <groupId>org.springframework.boot</groupId> |
| 78 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 79 | <executions> |
| 80 | <execution> |
| 81 | <id>boot-repackage</id> |
| 82 | <phase>package</phase> |
| 83 | <goals> |
| 84 | <goal>repackage</goal> |
| 85 | </goals> |
| 86 | </execution> |
| 87 | </executions> |
| 88 | </plugin> |
| 89 | </plugins> |
| 90 | </pluginManagement> |
| 91 | </build> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 92 | |
| 93 | <modules> |
| 94 | <module>foo</module> |
| 95 | <module>bar</module> |
刘洪青 | a0bb8a9 | 2018-07-19 17:30:07 +0800 | [diff] [blame] | 96 | <module>security</module> |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 97 | |
刘洪青 | d58bc05 | 2018-08-06 22:04:56 +0800 | [diff] [blame] | 98 | <module>common</module> |
| 99 | |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 100 | <module>auth</module> |
| 101 | <module>user</module> |
| 102 | <module>gateway</module> |
| 103 | |
| 104 | <module>client</module> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 105 | </modules> |
| 106 | |
| 107 | </project> |