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> |
| 51 | <groupId>commons-collections</groupId> |
| 52 | <artifactId>commons-collections</artifactId> |
| 53 | <version>3.2.2</version> |
| 54 | </dependency> |
刘洪青 | 9cbbda2 | 2018-07-19 17:28:37 +0800 | [diff] [blame] | 55 | </dependencies> |
| 56 | |
| 57 | </dependencyManagement> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 58 | |
| 59 | <modules> |
| 60 | <module>foo</module> |
| 61 | <module>bar</module> |
刘洪青 | a0bb8a9 | 2018-07-19 17:30:07 +0800 | [diff] [blame] | 62 | <module>security</module> |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 63 | |
| 64 | <module>auth</module> |
| 65 | <module>user</module> |
| 66 | <module>gateway</module> |
| 67 | |
| 68 | <module>client</module> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 69 | </modules> |
| 70 | |
| 71 | </project> |