Skip to content

Commit e97a016

Browse files
committed
releng: pom changed for new parent
1 parent 7ebcd3c commit e97a016

File tree

2 files changed

+25
-30
lines changed

2 files changed

+25
-30
lines changed

README

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
The MyBatis data mapper framework makes it easier to use a relational database with object-oriented applications.
2+
MyBatis couples objects with stored procedures or SQL statements using a XML descriptor or annotations.
3+
Simplicity is the biggest advantage of the MyBatis data mapper over object relational mapping tools.

pom.xml

Lines changed: 22 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright 2009-2012 The MyBatis Team
3+
Copyright 2009-2013 The MyBatis Team
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.
@@ -14,10 +14,6 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
17-
18-
<!--
19-
version: $Id: pom.xml 4114 2011-11-27 19:03:32Z simone.tripodi $
20-
-->
2117
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2218
<modelVersion>4.0.0</modelVersion>
2319

@@ -104,23 +100,23 @@
104100
</contributors>
105101

106102
<scm>
107-
<url>scm:svn:https://mybatis.googlecode.com/svn/trunk</url>
108-
<connection>scm:svn:https://mybatis.googlecode.com/svn/trunk</connection>
109-
<developerConnection>scm:svn:https://mybatis.googlecode.com/svn/trunk</developerConnection>
103+
<url>http://github.com/mybatis/mybatis-3</url>
104+
<connection>scm:git:ssh://github.com/mybatis/mybatis-3.git</connection>
105+
<developerConnection>scm:git:git+ssh://[email protected]/mybatis/mybatis-3.git</developerConnection>
106+
<tag>HEAD</tag>
110107
</scm>
108+
<issueManagement>
109+
<system>GitHub Issue Management</system>
110+
<url>https://github.com/mybatis/mybatis-3/issues</url>
111+
</issueManagement>
112+
<ciManagement>
113+
<system>Travis CI</system>
114+
<url>https://travis-ci.org/mybatis/mybatis-3/</url>
115+
</ciManagement>
111116
<distributionManagement>
112-
<!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
113117
<site>
114-
<id>mybatis.site</id>
115-
<!--
116-
| make it overridible, FTP is terribly slow when launched from Maven Wagon
117-
| an alternative strategy could be deploying the site locally
118-
|
119-
| -Dsite.deploymentUrl=file://...
120-
|
121-
| then async redeploying it via Filezilla/whatelese
122-
-->
123-
<url>${site.deploymentUrl}</url>
118+
<id>github</id>
119+
<url>gitsite:[email protected]/mybatis/mybatis-3.git</url>
124120
</site>
125121
</distributionManagement>
126122

@@ -130,12 +126,8 @@
130126
<osgi.export>org.apache.ibatis.*;version=${project.version};-noimport:=true</osgi.export>
131127
<osgi.import>!ognl,net.sf.cglib.proxy;resolution:=optional,javassist.util.proxy;resolution:=optional,org.apache.commons.logging;resolution:=optional,org.apache.log4j;resolution:=optional,org.slf4j;resolution:=optional,*</osgi.import>
132128
<osgi.dynamicImport>*</osgi.dynamicImport>
133-
<!--
134-
| see distributionManagement.site.url
135-
-->
136-
<site.deploymentUrl>ftp://${mybatis.host}/core/</site.deploymentUrl>
137129
<javac.src.version>1.6</javac.src.version>
138-
<javac.target.version>1.6</javac.target.version>
130+
<javac.target.version>1.6</javac.target.version>
139131
</properties>
140132

141133
<dependencies>
@@ -182,7 +174,7 @@
182174
<version>2.2.2</version>
183175
<optional>true</optional>
184176
</dependency>
185-
177+
186178
<!-- Test dependencies -->
187179
<dependency>
188180
<groupId>junit</groupId>
@@ -202,12 +194,12 @@
202194
<version>10.9.1.0</version>
203195
<scope>test</scope>
204196
</dependency>
205-
<dependency>
206-
<groupId>org.mockito</groupId>
207-
<artifactId>mockito-core</artifactId>
208-
<version>1.9.5</version>
197+
<dependency>
198+
<groupId>org.mockito</groupId>
199+
<artifactId>mockito-core</artifactId>
200+
<version>1.9.5</version>
209201
<scope>test</scope>
210-
</dependency>
202+
</dependency>
211203
<dependency>
212204
<groupId>commons-dbcp</groupId>
213205
<artifactId>commons-dbcp</artifactId>

0 commit comments

Comments
 (0)