Skip to content

Commit e5a2aaf

Browse files
committed
1 parent 745fa95 commit e5a2aaf

File tree

1 file changed

+135
-125
lines changed

1 file changed

+135
-125
lines changed

pom.xml

Lines changed: 135 additions & 125 deletions
Original file line numberDiff line numberDiff line change
@@ -19,35 +19,27 @@
1919
version: $Id: pom.xml 4114 2011-11-27 19:03:32Z simone.tripodi $
2020
-->
2121
<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+
2224
<parent>
2325
<groupId>org.mybatis</groupId>
2426
<artifactId>mybatis-parent</artifactId>
2527
<version>14-SNAPSHOT</version>
2628
</parent>
27-
<modelVersion>4.0.0</modelVersion>
29+
2830
<artifactId>mybatis</artifactId>
31+
<version>3.1.0-SNAPSHOT</version>
32+
<packaging>jar</packaging>
33+
2934
<name>mybatis</name>
3035
<description>
3136
The mybatis data mapper framework makes it easier to use a relational database with object-oriented
3237
applications. mybatis couples objects with stored procedures or SQL statements using a XML descriptor or
3338
annotations. Simplicity is the biggest advantage of the mybatis data mapper over object relational mapping
3439
tools.
3540
</description>
36-
<version>3.1.0-SNAPSHOT</version>
37-
<packaging>jar</packaging>
3841
<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+
5143
<contributors>
5244
<contributor>
5345
<name>Andrea Selva</name>
@@ -76,33 +68,130 @@
7668
<contributor>
7769
<name>Keith Wong</name>
7870
<email>[email protected]</email>
79-
</contributor>
71+
</contributor>
8072
<contributor>
8173
<name>Riccardo Cossu</name>
8274
<email>[email protected]</email>
8375
</contributor>
8476
</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+
8591
<properties>
8692
<findbugs.onlyAnalyze>org.apache.ibatis.*</findbugs.onlyAnalyze>
8793
<clirr.comparisonVersion>3.0.6</clirr.comparisonVersion>
8894
<osgi.export>org.apache.ibatis.*;version=${project.version};-noimport:=true</osgi.export>
8995
<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>
9096
<osgi.dynamicImport>*</osgi.dynamicImport>
9197
</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+
106195
<build>
107196
<plugins>
108197
<plugin>
@@ -230,99 +319,20 @@
230319
</testResource>
231320
</testResources>
232321
</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+
328338
</project>

0 commit comments

Comments
 (0)