|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
| 6 | + <parent> |
| 7 | + <groupId>org.springframework.boot</groupId> |
| 8 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 9 | + <version>1.5.13.RELEASE</version> |
| 10 | + </parent> |
| 11 | + |
6 | 12 | <groupId>com.yiqiniu.easytrans.demos</groupId> |
7 | 13 | <artifactId>interfacecall</artifactId> |
8 | | - <version>1.0.0</version> |
| 14 | + <version>${revision}</version> |
9 | 15 | <packaging>pom</packaging> |
10 | 16 |
|
11 | 17 |
|
12 | 18 | <properties> |
13 | 19 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | 20 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
15 | 21 | <java.version>1.8</java.version> |
16 | | - <easytrans.version>1.0.0-SNAPSHOT</easytrans.version> |
17 | | - <demo.version>1.0.0</demo.version> |
| 22 | + <revision>1.0.0</revision> |
18 | 23 | </properties> |
19 | 24 |
|
20 | 25 |
|
|
24 | 29 | <module>interfacecall-order-service</module> |
25 | 30 | </modules> |
26 | 31 |
|
27 | | - |
28 | | - <parent> |
29 | | - <groupId>com.yiqiniu.easytrans</groupId> |
30 | | - <artifactId>easytrans</artifactId> |
31 | | - <version>1.0.0-SNAPSHOT</version> |
32 | | - </parent> |
33 | | - |
34 | 32 | <dependencyManagement> |
35 | 33 | <dependencies> |
| 34 | + |
| 35 | + <dependency> |
| 36 | + <groupId>org.springframework.cloud</groupId> |
| 37 | + <artifactId>spring-cloud-dependencies</artifactId> |
| 38 | + <version>Dalston.SR5</version> |
| 39 | + <type>pom</type> |
| 40 | + <scope>import</scope> |
| 41 | + </dependency> |
| 42 | + |
| 43 | + <dependency> |
| 44 | + <groupId>com.yiqiniu.easytrans</groupId> |
| 45 | + <artifactId>easytrans</artifactId> |
| 46 | + <version>${revision}</version> |
| 47 | + <type>pom</type> |
| 48 | + <scope>import</scope> |
| 49 | + </dependency> |
| 50 | + |
36 | 51 | <dependency> |
37 | 52 | <groupId>com.yiqiniu.easytrans.demos</groupId> |
38 | 53 | <artifactId>interfacecall-wallet-api</artifactId> |
39 | | - <version>${demo.version}</version> |
| 54 | + <version>${revision}</version> |
40 | 55 | </dependency> |
41 | 56 | <dependency> |
42 | 57 | <groupId>com.yiqiniu.easytrans.demos</groupId> |
43 | 58 | <artifactId>interfacecall-wallet-service</artifactId> |
44 | | - <version>${demo.version}</version> |
| 59 | + <version>${revision}</version> |
45 | 60 | </dependency> |
46 | 61 | <dependency> |
47 | 62 | <groupId>com.yiqiniu.easytrans.demos</groupId> |
48 | 63 | <artifactId>interfacecall-order-service</artifactId> |
49 | | - <version>${demo.version}</version> |
| 64 | + <version>${revision}</version> |
50 | 65 | </dependency> |
51 | 66 | </dependencies> |
52 | 67 | </dependencyManagement> |
|
0 commit comments