Skip to content

Commit 06646f3

Browse files
committed
Updates to pom after Jeremy's changes
1 parent 229fe57 commit 06646f3

File tree

1 file changed

+7
-33
lines changed

1 file changed

+7
-33
lines changed

pom.xml

Lines changed: 7 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
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">
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/xsd/maven-4.0.0.xsd">
1818
<modelVersion>4.0.0</modelVersion>
1919

2020
<parent>
2121
<groupId>org.mybatis</groupId>
2222
<artifactId>mybatis-parent</artifactId>
23-
<version>21</version>
23+
<version>22-SNAPSHOT</version>
2424
</parent>
2525

2626
<artifactId>mybatis</artifactId>
@@ -130,8 +130,8 @@
130130
<osgi.export>org.apache.ibatis.*;version=${project.version};-noimport:=true</osgi.export>
131131
<osgi.import>*;resolution:=optional</osgi.import>
132132
<osgi.dynamicImport>*</osgi.dynamicImport>
133-
<javac.src.version>1.6</javac.src.version>
134-
<javac.target.version>1.6</javac.target.version>
133+
<maven.compiler.source>1.6</maven.compiler.source>
134+
<maven.compiler.target>1.6</maven.compiler.target>
135135
</properties>
136136

137137
<dependencies>
@@ -250,13 +250,6 @@
250250
<groupId>org.apache.maven.plugins</groupId>
251251
<artifactId>maven-pdf-plugin</artifactId>
252252
</plugin>
253-
<plugin>
254-
<groupId>org.apache.maven.plugins</groupId>
255-
<artifactId>maven-release-plugin</artifactId>
256-
<configuration>
257-
<arguments>-Prelease</arguments>
258-
</configuration>
259-
</plugin>
260253
<plugin>
261254
<groupId>org.sonatype.plugins</groupId>
262255
<artifactId>jarjar-maven-plugin</artifactId>
@@ -319,9 +312,11 @@
319312
<instrumentation>
320313
<ignores>
321314
<ignore>org.apache.ibatis.ognl.*</ignore>
315+
<ignore>org.apache.ibatis.javassist.*</ignore>
322316
</ignores>
323317
<excludes>
324318
<exclude>org/apache/ibatis/ognl/**/*.class</exclude>
319+
<exclude>org/apache/ibatis/javassist/**/*.class</exclude>
325320
</excludes>
326321
</instrumentation>
327322
</configuration>
@@ -333,14 +328,8 @@
333328
</execution>
334329
</executions>
335330
</plugin>
336-
<plugin>
337-
<groupId>org.apache.maven.plugins</groupId>
338-
<artifactId>maven-surefire-plugin</artifactId>
339-
<configuration>
340-
<forkMode>pertest</forkMode>
341-
</configuration>
342-
</plugin>
343331
</plugins>
332+
344333
<resources>
345334
<resource>
346335
<directory>${basedir}</directory>
@@ -367,19 +356,4 @@
367356
</testResources>
368357
</build>
369358

370-
<reporting>
371-
<plugins>
372-
<plugin>
373-
<groupId>org.codehaus.mojo</groupId>
374-
<artifactId>cobertura-maven-plugin</artifactId>
375-
<configuration>
376-
<formats>
377-
<format>html</format>
378-
<format>xml</format>
379-
</formats>
380-
</configuration>
381-
</plugin>
382-
</plugins>
383-
</reporting>
384-
385359
</project>

0 commit comments

Comments
 (0)