chenbo | 0e26783 | 2018-08-21 11:19:05 +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 | |
| 6 | <parent> |
| 7 | <groupId>com.supwisdom.buildcommons</groupId> |
| 8 | <artifactId>spring-cloud-parent</artifactId> |
| 9 | <version>Finchley.RELEASE-1.0-SNAPSHOT</version> |
| 10 | </parent> |
| 11 | |
| 12 | <groupId>com.supwisdom.leaveschool</groupId> |
| 13 | <artifactId>leaveschool-parent</artifactId> |
| 14 | <version>0.0.1-SNAPSHOT</version> |
| 15 | <packaging>pom</packaging> |
| 16 | |
| 17 | <properties> |
| 18 | <maven.deploy.skip>true</maven.deploy.skip> |
| 19 | |
| 20 | <infras.version>0.0.1-SNAPSHOT</infras.version> |
| 21 | </properties> |
| 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> |
| 49 | |
| 50 | <dependency> |
| 51 | <groupId>com.supwisdom.leaveschool</groupId> |
| 52 | <artifactId>leaveschool-common</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>commons-collections</groupId> |
| 58 | <artifactId>commons-collections</artifactId> |
| 59 | <version>3.2.2</version> |
| 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>org.json</groupId> |
| 64 | <artifactId>json</artifactId> |
| 65 | <version>20180130</version> |
| 66 | </dependency> |
| 67 | |
| 68 | </dependencies> |
| 69 | |
| 70 | </dependencyManagement> |
| 71 | |
| 72 | <modules> |
| 73 | <!-- |
| 74 | <module>foo</module> |
| 75 | <module>bar</module> |
| 76 | <module>security</module> |
| 77 | <module>auth</module> |
| 78 | <module>gateway</module> |
| 79 | --> |
| 80 | <module>common</module> |
| 81 | |
| 82 | |
| 83 | <module>user</module> |
| 84 | |
| 85 | |
| 86 | <module>client</module> |
| 87 | </modules> |
| 88 | |
| 89 | </project> |