Commit ce8379b2cf2f36dd483d6a9e8ae6f652ad3982f8
Merge branch 'qa1.0'
Conflicts: pom.xml
Showing
2 changed files
with
38 additions
and
66 deletions
.gitignore
pom.xml
1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | <modelVersion>4.0.0</modelVersion> | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | ||
5 | <groupId>com.ylp.common</groupId> | 5 | <groupId>com.ylp.common</groupId> |
6 | <artifactId>ylp-common-parent</artifactId> | 6 | <artifactId>ylp-common-parent</artifactId> |
7 | - <version>3.0-SNAPSHOT</version> | 7 | + <version>1.0-Release</version> |
8 | <packaging>pom</packaging> | 8 | <packaging>pom</packaging> |
9 | 9 | ||
10 | <name>ylp-common-parent</name> | 10 | <name>ylp-common-parent</name> |
11 | <url>http://maven.apache.org</url> | 11 | <url>http://maven.apache.org</url> |
12 | - | 12 | + |
13 | <!-- 全局属性配置 --> | 13 | <!-- 全局属性配置 --> |
14 | <profiles> | 14 | <profiles> |
15 | - | 15 | + |
16 | <!-- 开发环境 --> | 16 | <!-- 开发环境 --> |
17 | <profile> | 17 | <profile> |
18 | <id>main</id> | 18 | <id>main</id> |
@@ -27,7 +27,7 @@ | @@ -27,7 +27,7 @@ | ||
27 | <activeByDefault>true</activeByDefault> | 27 | <activeByDefault>true</activeByDefault> |
28 | </activation> | 28 | </activation> |
29 | </profile> | 29 | </profile> |
30 | - | 30 | + |
31 | <!-- 测试环境 --> | 31 | <!-- 测试环境 --> |
32 | <profile> | 32 | <profile> |
33 | <id>test</id> | 33 | <id>test</id> |
@@ -37,7 +37,7 @@ | @@ -37,7 +37,7 @@ | ||
37 | <ver>3.0-SNAPSHOT</ver> | 37 | <ver>3.0-SNAPSHOT</ver> |
38 | </properties> | 38 | </properties> |
39 | </profile> | 39 | </profile> |
40 | - | 40 | + |
41 | <!-- qa环境 --> | 41 | <!-- qa环境 --> |
42 | <profile> | 42 | <profile> |
43 | <id>qa</id> | 43 | <id>qa</id> |
@@ -48,7 +48,7 @@ | @@ -48,7 +48,7 @@ | ||
48 | </properties> | 48 | </properties> |
49 | </profile> | 49 | </profile> |
50 | 50 | ||
51 | - <!-- 生产环境 --> | 51 | + <!-- prod环境 --> |
52 | <profile> | 52 | <profile> |
53 | <id>prod</id> | 53 | <id>prod</id> |
54 | <properties> | 54 | <properties> |
@@ -57,77 +57,48 @@ | @@ -57,77 +57,48 @@ | ||
57 | <ver>1.0-Release</ver> | 57 | <ver>1.0-Release</ver> |
58 | </properties> | 58 | </properties> |
59 | </profile> | 59 | </profile> |
60 | - | 60 | + |
61 | </profiles> | 61 | </profiles> |
62 | 62 | ||
63 | <distributionManagement> | 63 | <distributionManagement> |
64 | <repository> | 64 | <repository> |
65 | <id>nexus-releases</id> | 65 | <id>nexus-releases</id> |
66 | <name>Nexus Release Repository</name> | 66 | <name>Nexus Release Repository</name> |
67 | - <url>http://172.16.8.222:8081/nexus/content/repositories/releases/</url> | 67 | + <url>http://nexus.vipzhuang.cn/content/repositories/releases/</url> |
68 | </repository> | 68 | </repository> |
69 | <snapshotRepository> | 69 | <snapshotRepository> |
70 | <id>nexus-snapshots</id> | 70 | <id>nexus-snapshots</id> |
71 | <name>Nexus Snapshot Repository</name> | 71 | <name>Nexus Snapshot Repository</name> |
72 | - <url>http://172.16.8.222:8081/nexus/content/repositories/snapshots/</url> | 72 | + <url>http://nexus.vipzhuang.cn/content/repositories/snapshots/</url> |
73 | </snapshotRepository> | 73 | </snapshotRepository> |
74 | </distributionManagement> | 74 | </distributionManagement> |
75 | - | 75 | + |
76 | + <repositories> | ||
77 | + <repository> | ||
78 | + <id>nexus</id> | ||
79 | + <url>http://nexus.vipzhuang.cn/content/groups/public</url> | ||
80 | + <releases> | ||
81 | + <enabled>true</enabled> | ||
82 | + </releases> | ||
83 | + <snapshots> | ||
84 | + <enabled>false</enabled> | ||
85 | + </snapshots> | ||
86 | + </repository> | ||
87 | + <repository> | ||
88 | + <id>nexus-snapshots</id> | ||
89 | + <url>http://nexus.vipzhuang.cn/content/repositories/snapshots/</url> | ||
90 | + <releases> | ||
91 | + <enabled>false</enabled> | ||
92 | + </releases> | ||
93 | + <snapshots> | ||
94 | + <enabled>true</enabled> | ||
95 | + </snapshots> | ||
96 | + </repository> | ||
97 | + </repositories> | ||
98 | + | ||
76 | <properties> | 99 | <properties> |
77 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 100 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
78 | 101 | ||
79 | - | ||
80 | - | ||
81 | - <!-- common projects --> | ||
82 | - <ylp-common-tools.version>3.0-SNAPSHOT</ylp-common-tools.version> | ||
83 | - <ylp-common-config.version>3.0-SNAPSHOT</ylp-common-config.version> | ||
84 | - <ylp-common-core.version>3.0-SNAPSHOT</ylp-common-core.version> | ||
85 | - <ylp-common-web.version>3.0-SNAPSHOT</ylp-common-web.version> | ||
86 | - | ||
87 | - <!-- facade projects --> | ||
88 | - <ylp-facade-user.version>3.0-SNAPSHOT</ylp-facade-user.version> | ||
89 | - <ylp-facade-data.version>3.0-SNAPSHOT</ylp-facade-data.version> | ||
90 | - <ylp-facade-account.version>3.0-SNAPSHOT</ylp-facade-account.version> | ||
91 | - <ylp-facade-settlement.version>3.0-SNAPSHOT</ylp-facade-settlement.version> | ||
92 | - <ylp-facade-trade.version>3.0-SNAPSHOT</ylp-facade-trade.version> | ||
93 | - <ylp-facade-notify.version>3.0-SNAPSHOT</ylp-facade-notify.version> | ||
94 | - <ylp-facade-source.version>3.0-SNAPSHOT</ylp-facade-source.version> | ||
95 | - <ylp-facade-accountcheck.version>3.0-SNAPSHOT</ylp-facade-accountcheck.version> | ||
96 | - <ylp-facade-change.version>3.0-SNAPSHOT</ylp-facade-change.version> | ||
97 | - <ylp-facade-commodity.version>3.0-SNAPSHOT</ylp-facade-commodity.version> | ||
98 | - | ||
99 | - <!-- service projects --> | ||
100 | - <ylp-service-user.version>3.0-SNAPSHOT</ylp-service-user.version> | ||
101 | - <ylp-service-account.version>3.0-SNAPSHOT</ylp-service-account.version> | ||
102 | - <ylp-service-settlement.version>3.0-SNAPSHOT</ylp-service-settlement.version> | ||
103 | - <ylp-service-trade.version>3.0-SNAPSHOT</ylp-service-trade.version> | ||
104 | - <ylp-service-notify.version>3.0-SNAPSHOT</ylp-service-notify.version> | ||
105 | - <ylp-service-source.version>3.0-SNAPSHOT</ylp-service-source.version> | ||
106 | - <ylp-service-accountcheck.version>3.0-SNAPSHOT</ylp-service-accountcheck.version> | ||
107 | - <ylp-service-change.version>3.0-SNAPSHOT</ylp-service-change.version> | ||
108 | - <ylp-service-commodity.version>3.0-SNAPSHOT</ylp-service-commodity.version> | ||
109 | - | ||
110 | - <!-- web projects --> | ||
111 | - <ylp-web-pay.version>3.0-SNAPSHOT</ylp-web-pay.version> | ||
112 | - <ylp-web-source.version>3.0-SNAPSHOT</ylp-web-source.version> | ||
113 | - <ylp-data-web.version>3.0-SNAPSHOT</ylp-data-web.version> | ||
114 | - | ||
115 | - <!-- timer task projects --> | ||
116 | - <ylp-timer-settlement.version>3.0-SNAPSHOT</ylp-timer-settlement.version> | ||
117 | - <!-- extend projects --> | ||
118 | - | ||
119 | - <!-- api projects --> | ||
120 | - <ylp-payweb-api.version>3.0-SNAPSHOT</ylp-payweb-api.version> | ||
121 | - | ||
122 | - <!-- app projects --> | ||
123 | - <ylp-app-queue-notify.version>3.0-SNAPSHOT</ylp-app-queue-notify.version> | ||
124 | - <ylp-app-accountcheck.version>3.0-SNAPSHOT</ylp-app-accountcheck.version> | ||
125 | - | ||
126 | - <!-- weixin --> | ||
127 | - <ylp-weixin-wechat.version>3.0-SNAPSHOT</ylp-weixin-wechat.version> | ||
128 | - | ||
129 | - <!-- ========================================================== --> | ||
130 | - | ||
131 | <!-- frameworks --> | 102 | <!-- frameworks --> |
132 | <org.springframework.version>3.2.4.RELEASE</org.springframework.version> | 103 | <org.springframework.version>3.2.4.RELEASE</org.springframework.version> |
133 | 104 | ||
@@ -536,11 +507,11 @@ | @@ -536,11 +507,11 @@ | ||
536 | <exclusions> | 507 | <exclusions> |
537 | <exclusion> | 508 | <exclusion> |
538 | <groupId>org.slf4j</groupId> | 509 | <groupId>org.slf4j</groupId> |
539 | - <artifactId>slf4j-log4j12</artifactId> | 510 | + <artifactId>slf4j-log4j12</artifactId> |
540 | </exclusion> | 511 | </exclusion> |
541 | </exclusions> | 512 | </exclusions> |
542 | </dependency> | 513 | </dependency> |
543 | - | 514 | + |
544 | </dependencies> | 515 | </dependencies> |
545 | </dependencyManagement> | 516 | </dependencyManagement> |
546 | 517 |