|
19 | 19 | version: $Id: pom.xml 4114 2011-11-27 19:03:32Z simone.tripodi $
|
20 | 20 | -->
|
21 | 21 | <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 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + |
22 | 24 | <parent>
|
23 | 25 | <groupId>org.mybatis</groupId>
|
24 | 26 | <artifactId>mybatis-parent</artifactId>
|
25 | 27 | <version>14-SNAPSHOT</version>
|
26 | 28 | </parent>
|
27 |
| - <modelVersion>4.0.0</modelVersion> |
| 29 | + |
28 | 30 | <artifactId>mybatis</artifactId>
|
| 31 | + <version>3.1.0-SNAPSHOT</version> |
| 32 | + <packaging>jar</packaging> |
| 33 | + |
29 | 34 | <name>mybatis</name>
|
30 | 35 | <description>
|
31 | 36 | The mybatis data mapper framework makes it easier to use a relational database with object-oriented
|
32 | 37 | applications. mybatis couples objects with stored procedures or SQL statements using a XML descriptor or
|
33 | 38 | annotations. Simplicity is the biggest advantage of the mybatis data mapper over object relational mapping
|
34 | 39 | tools.
|
35 | 40 | </description>
|
36 |
| - <version>3.1.0-SNAPSHOT</version> |
37 |
| - <packaging>jar</packaging> |
38 | 41 | <url>http://www.mybatis.org/core/</url>
|
39 |
| - <scm> |
40 |
| - <url>scm:svn:https://mybatis.googlecode.com/svn/trunk</url> |
41 |
| - <connection>scm:svn:https://mybatis.googlecode.com/svn/trunk</connection> |
42 |
| - <developerConnection>scm:svn:https://mybatis.googlecode.com/svn/trunk</developerConnection> |
43 |
| - </scm> |
44 |
| - <distributionManagement> |
45 |
| - <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> |
46 |
| - <site> |
47 |
| - <id>mybatis.site</id> |
48 |
| - <url>ftp://${mybatis.host}/core/</url> |
49 |
| - </site> |
50 |
| - </distributionManagement> |
| 42 | + |
51 | 43 | <contributors>
|
52 | 44 | <contributor>
|
53 | 45 | <name>Andrea Selva</name>
|
|
76 | 68 | <contributor>
|
77 | 69 | <name>Keith Wong</name>
|
78 | 70 |
|
79 |
| - </contributor> |
| 71 | + </contributor> |
80 | 72 | <contributor>
|
81 | 73 | <name>Riccardo Cossu</name>
|
82 | 74 |
|
83 | 75 | </contributor>
|
84 | 76 | </contributors>
|
| 77 | + |
| 78 | + <scm> |
| 79 | + <url>scm:svn:https://mybatis.googlecode.com/svn/trunk</url> |
| 80 | + <connection>scm:svn:https://mybatis.googlecode.com/svn/trunk</connection> |
| 81 | + <developerConnection>scm:svn:https://mybatis.googlecode.com/svn/trunk</developerConnection> |
| 82 | + </scm> |
| 83 | + <distributionManagement> |
| 84 | + <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> |
| 85 | + <site> |
| 86 | + <id>mybatis.site</id> |
| 87 | + <url>ftp://${mybatis.host}/core/</url> |
| 88 | + </site> |
| 89 | + </distributionManagement> |
| 90 | + |
85 | 91 | <properties>
|
86 | 92 | <findbugs.onlyAnalyze>org.apache.ibatis.*</findbugs.onlyAnalyze>
|
87 | 93 | <clirr.comparisonVersion>3.0.6</clirr.comparisonVersion>
|
88 | 94 | <osgi.export>org.apache.ibatis.*;version=${project.version};-noimport:=true</osgi.export>
|
89 | 95 | <osgi.import>!ognl,net.sf.cglib.proxy;resolution:=optional,org.apache.commons.logging;resolution:=optional,org.apache.log4j;resolution:=optional,org.slf4j;resolution:=optional,*</osgi.import>
|
90 | 96 | <osgi.dynamicImport>*</osgi.dynamicImport>
|
91 | 97 | </properties>
|
92 |
| - <reporting> |
93 |
| - <plugins> |
94 |
| - <plugin> |
95 |
| - <groupId>org.codehaus.mojo</groupId> |
96 |
| - <artifactId>cobertura-maven-plugin</artifactId> |
97 |
| - <configuration> |
98 |
| - <formats> |
99 |
| - <format>html</format> |
100 |
| - <format>xml</format> |
101 |
| - </formats> |
102 |
| - </configuration> |
103 |
| - </plugin> |
104 |
| - </plugins> |
105 |
| - </reporting> |
| 98 | + |
| 99 | + <dependencies> |
| 100 | + <dependency> |
| 101 | + <groupId>ognl</groupId> |
| 102 | + <artifactId>ognl</artifactId> |
| 103 | + <version>2.6.9</version> |
| 104 | + <scope>provided</scope> |
| 105 | + <optional>true</optional> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>org.slf4j</groupId> |
| 109 | + <artifactId>slf4j-api</artifactId> |
| 110 | + <version>1.6.2</version> |
| 111 | + <optional>true</optional> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>org.slf4j</groupId> |
| 115 | + <artifactId>slf4j-log4j12</artifactId> |
| 116 | + <version>1.6.2</version> |
| 117 | + <optional>true</optional> |
| 118 | + </dependency> |
| 119 | + <dependency> |
| 120 | + <groupId>log4j</groupId> |
| 121 | + <artifactId>log4j</artifactId> |
| 122 | + <version>1.2.16</version> |
| 123 | + <optional>true</optional> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>commons-logging</groupId> |
| 127 | + <artifactId>commons-logging</artifactId> |
| 128 | + <version>1.1.1</version> |
| 129 | + <optional>true</optional> |
| 130 | + </dependency> |
| 131 | + <dependency> |
| 132 | + <groupId>cglib</groupId> |
| 133 | + <artifactId>cglib</artifactId> |
| 134 | + <version>2.2.2</version> |
| 135 | + <optional>true</optional> |
| 136 | + </dependency> |
| 137 | + <!-- Test dependencies --> |
| 138 | + <dependency> |
| 139 | + <groupId>junit</groupId> |
| 140 | + <artifactId>junit</artifactId> |
| 141 | + <version>4.10</version> |
| 142 | + <scope>test</scope> |
| 143 | + </dependency> |
| 144 | + <dependency> |
| 145 | + <groupId>org.hsqldb</groupId> |
| 146 | + <artifactId>hsqldb</artifactId> |
| 147 | + <version>2.2.4</version> |
| 148 | + <scope>test</scope> |
| 149 | + </dependency> |
| 150 | + <dependency> |
| 151 | + <groupId>org.apache.derby</groupId> |
| 152 | + <artifactId>derby</artifactId> |
| 153 | + <version>10.3.2.1</version> |
| 154 | + <scope>test</scope> |
| 155 | + </dependency> |
| 156 | + <dependency> |
| 157 | + <groupId>org.jmock</groupId> |
| 158 | + <artifactId>jmock-junit4</artifactId> |
| 159 | + <version>2.5.1</version> |
| 160 | + <scope>test</scope> |
| 161 | + </dependency> |
| 162 | + <dependency> |
| 163 | + <groupId>org.jmock</groupId> |
| 164 | + <artifactId>jmock-legacy</artifactId> |
| 165 | + <version>2.5.1</version> |
| 166 | + <scope>test</scope> |
| 167 | + <exclusions> |
| 168 | + <exclusion> |
| 169 | + <groupId>cglib</groupId> |
| 170 | + <artifactId>cglib-nodep</artifactId> |
| 171 | + </exclusion> |
| 172 | + </exclusions> |
| 173 | + </dependency> |
| 174 | + <dependency> |
| 175 | + <groupId>commons-dbcp</groupId> |
| 176 | + <artifactId>commons-dbcp</artifactId> |
| 177 | + <version>1.4</version> |
| 178 | + <scope>test</scope> |
| 179 | + </dependency> |
| 180 | + <dependency> |
| 181 | + <groupId>javax.transaction</groupId> |
| 182 | + <artifactId>transaction-api</artifactId> |
| 183 | + <version>1.1</version> |
| 184 | + <scope>test</scope> |
| 185 | + </dependency> |
| 186 | + <!-- postgresql driver is required to run the refcursor tests --> |
| 187 | + <dependency> |
| 188 | + <groupId>postgresql</groupId> |
| 189 | + <artifactId>postgresql</artifactId> |
| 190 | + <version>9.0-801.jdbc3</version> |
| 191 | + <scope>test</scope> |
| 192 | + </dependency> |
| 193 | + </dependencies> |
| 194 | + |
106 | 195 | <build>
|
107 | 196 | <plugins>
|
108 | 197 | <plugin>
|
|
230 | 319 | </testResource>
|
231 | 320 | </testResources>
|
232 | 321 | </build>
|
233 |
| - <dependencies> |
234 |
| - <dependency> |
235 |
| - <groupId>ognl</groupId> |
236 |
| - <artifactId>ognl</artifactId> |
237 |
| - <version>2.6.9</version> |
238 |
| - <scope>provided</scope> |
239 |
| - <optional>true</optional> |
240 |
| - </dependency> |
241 |
| - <dependency> |
242 |
| - <groupId>org.slf4j</groupId> |
243 |
| - <artifactId>slf4j-api</artifactId> |
244 |
| - <version>1.6.2</version> |
245 |
| - <optional>true</optional> |
246 |
| - </dependency> |
247 |
| - <dependency> |
248 |
| - <groupId>org.slf4j</groupId> |
249 |
| - <artifactId>slf4j-log4j12</artifactId> |
250 |
| - <version>1.6.2</version> |
251 |
| - <optional>true</optional> |
252 |
| - </dependency> |
253 |
| - <dependency> |
254 |
| - <groupId>log4j</groupId> |
255 |
| - <artifactId>log4j</artifactId> |
256 |
| - <version>1.2.16</version> |
257 |
| - <optional>true</optional> |
258 |
| - </dependency> |
259 |
| - <dependency> |
260 |
| - <groupId>commons-logging</groupId> |
261 |
| - <artifactId>commons-logging</artifactId> |
262 |
| - <version>1.1.1</version> |
263 |
| - <optional>true</optional> |
264 |
| - </dependency> |
265 |
| - <dependency> |
266 |
| - <groupId>cglib</groupId> |
267 |
| - <artifactId>cglib</artifactId> |
268 |
| - <version>2.2.2</version> |
269 |
| - <optional>true</optional> |
270 |
| - </dependency> |
271 |
| - <!-- Test dependencies --> |
272 |
| - <dependency> |
273 |
| - <groupId>junit</groupId> |
274 |
| - <artifactId>junit</artifactId> |
275 |
| - <version>4.10</version> |
276 |
| - <scope>test</scope> |
277 |
| - </dependency> |
278 |
| - <dependency> |
279 |
| - <groupId>org.hsqldb</groupId> |
280 |
| - <artifactId>hsqldb</artifactId> |
281 |
| - <version>2.2.4</version> |
282 |
| - <scope>test</scope> |
283 |
| - </dependency> |
284 |
| - <dependency> |
285 |
| - <groupId>org.apache.derby</groupId> |
286 |
| - <artifactId>derby</artifactId> |
287 |
| - <version>10.3.2.1</version> |
288 |
| - <scope>test</scope> |
289 |
| - </dependency> |
290 |
| - <dependency> |
291 |
| - <groupId>org.jmock</groupId> |
292 |
| - <artifactId>jmock-junit4</artifactId> |
293 |
| - <version>2.5.1</version> |
294 |
| - <scope>test</scope> |
295 |
| - </dependency> |
296 |
| - <dependency> |
297 |
| - <groupId>org.jmock</groupId> |
298 |
| - <artifactId>jmock-legacy</artifactId> |
299 |
| - <version>2.5.1</version> |
300 |
| - <scope>test</scope> |
301 |
| - <exclusions> |
302 |
| - <exclusion> |
303 |
| - <groupId>cglib</groupId> |
304 |
| - <artifactId>cglib-nodep</artifactId> |
305 |
| - </exclusion> |
306 |
| - </exclusions> |
307 |
| - </dependency> |
308 |
| - <dependency> |
309 |
| - <groupId>commons-dbcp</groupId> |
310 |
| - <artifactId>commons-dbcp</artifactId> |
311 |
| - <version>1.4</version> |
312 |
| - <scope>test</scope> |
313 |
| - </dependency> |
314 |
| - <dependency> |
315 |
| - <groupId>javax.transaction</groupId> |
316 |
| - <artifactId>transaction-api</artifactId> |
317 |
| - <version>1.1</version> |
318 |
| - <scope>test</scope> |
319 |
| - </dependency> |
320 |
| - <!-- postgresql driver is required to run the refcursor tests --> |
321 |
| - <dependency> |
322 |
| - <groupId>postgresql</groupId> |
323 |
| - <artifactId>postgresql</artifactId> |
324 |
| - <version>9.0-801.jdbc3</version> |
325 |
| - <scope>test</scope> |
326 |
| - </dependency> |
327 |
| - </dependencies> |
| 322 | + |
| 323 | + <reporting> |
| 324 | + <plugins> |
| 325 | + <plugin> |
| 326 | + <groupId>org.codehaus.mojo</groupId> |
| 327 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 328 | + <configuration> |
| 329 | + <formats> |
| 330 | + <format>html</format> |
| 331 | + <format>xml</format> |
| 332 | + </formats> |
| 333 | + </configuration> |
| 334 | + </plugin> |
| 335 | + </plugins> |
| 336 | + </reporting> |
| 337 | + |
328 | 338 | </project>
|
0 commit comments