|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!-- |
3 | | - Copyright 2009-2012 The MyBatis Team |
| 3 | + Copyright 2009-2013 The MyBatis Team |
4 | 4 |
|
5 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
6 | 6 | you may not use this file except in compliance with the License. |
|
14 | 14 | See the License for the specific language governing permissions and |
15 | 15 | limitations under the License. |
16 | 16 | --> |
17 | | - |
18 | | -<!-- |
19 | | - version: $Id: pom.xml 4114 2011-11-27 19:03:32Z simone.tripodi $ |
20 | | ---> |
21 | 17 | <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"> |
22 | 18 | <modelVersion>4.0.0</modelVersion> |
23 | 19 |
|
|
104 | 100 | </contributors> |
105 | 101 |
|
106 | 102 | <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://git@github.com/mybatis/mybatis-3.git</developerConnection> |
| 106 | + <tag>HEAD</tag> |
110 | 107 | </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> |
111 | 116 | <distributionManagement> |
112 | | - <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> |
113 | 117 | <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:git@github.com/mybatis/mybatis-3.git</url> |
124 | 120 | </site> |
125 | 121 | </distributionManagement> |
126 | 122 |
|
|
130 | 126 | <osgi.export>org.apache.ibatis.*;version=${project.version};-noimport:=true</osgi.export> |
131 | 127 | <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> |
132 | 128 | <osgi.dynamicImport>*</osgi.dynamicImport> |
133 | | - <!-- |
134 | | - | see distributionManagement.site.url |
135 | | - --> |
136 | | - <site.deploymentUrl>ftp://${mybatis.host}/core/</site.deploymentUrl> |
137 | 129 | <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> |
139 | 131 | </properties> |
140 | 132 |
|
141 | 133 | <dependencies> |
|
182 | 174 | <version>2.2.2</version> |
183 | 175 | <optional>true</optional> |
184 | 176 | </dependency> |
185 | | - |
| 177 | + |
186 | 178 | <!-- Test dependencies --> |
187 | 179 | <dependency> |
188 | 180 | <groupId>junit</groupId> |
|
202 | 194 | <version>10.9.1.0</version> |
203 | 195 | <scope>test</scope> |
204 | 196 | </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> |
209 | 201 | <scope>test</scope> |
210 | | - </dependency> |
| 202 | + </dependency> |
211 | 203 | <dependency> |
212 | 204 | <groupId>commons-dbcp</groupId> |
213 | 205 | <artifactId>commons-dbcp</artifactId> |
|
0 commit comments