Skip to content

Commit

Permalink
fix parent pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
xingziyang committed Apr 13, 2017
1 parent e08cd0a commit 79ce6d7
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
31 changes: 30 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,37 @@
<!-- frameworks -->
<org.springframework.version>4.2.8.RELEASE</org.springframework.version>
<org.apache.struts.version>2.3.15.1</org.apache.struts.version>
<!-- 本机 nexus 地址 -->
<maven_url>http://192.168.78.1:8081</maven_url>
</properties>

<repositories>
<!-- 私有库地址 -->
<repository>
<id>nexus</id>
<url>${maven_url}/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Nexus Release Repository</name>
<url>${maven_url}/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Nexus Snapshot Repository</name>
<url>${maven_url}/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>

<dependencyManagement>
<dependencies>
<!-- Test Dependency Begin -->
Expand All @@ -25,7 +54,7 @@
<version>4.11</version>
</dependency>
<!-- Test Dependency End -->

<!-- Common Dependency Begin -->
<dependency>
<groupId>xalan</groupId>
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
如果想要测试发送邮件操作如下:
*1-1:更改邮箱的配置文件
*1-2:消息订阅者去掉本行代码注释即可
// bailBiz.mailSend(mailParam);
//bailBiz.mailSend(mailParam);

0 comments on commit 79ce6d7

Please sign in to comment.