Skip to content

Commit

Permalink
Updates to pom after Jeremy's changes
Browse files Browse the repository at this point in the history
  • Loading branch information
emacarron committed Jul 14, 2014
1 parent 229fe57 commit 06646f3
Showing 1 changed file with 7 additions and 33 deletions.
40 changes: 7 additions & 33 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<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">
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-parent</artifactId>
<version>21</version>
<version>22-SNAPSHOT</version>
</parent>

<artifactId>mybatis</artifactId>
Expand Down Expand Up @@ -130,8 +130,8 @@
<osgi.export>org.apache.ibatis.*;version=${project.version};-noimport:=true</osgi.export>
<osgi.import>*;resolution:=optional</osgi.import>
<osgi.dynamicImport>*</osgi.dynamicImport>
<javac.src.version>1.6</javac.src.version>
<javac.target.version>1.6</javac.target.version>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>

<dependencies>
Expand Down Expand Up @@ -250,13 +250,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pdf-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<arguments>-Prelease</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>jarjar-maven-plugin</artifactId>
Expand Down Expand Up @@ -319,9 +312,11 @@
<instrumentation>
<ignores>
<ignore>org.apache.ibatis.ognl.*</ignore>
<ignore>org.apache.ibatis.javassist.*</ignore>
</ignores>
<excludes>
<exclude>org/apache/ibatis/ognl/**/*.class</exclude>
<exclude>org/apache/ibatis/javassist/**/*.class</exclude>
</excludes>
</instrumentation>
</configuration>
Expand All @@ -333,14 +328,8 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>pertest</forkMode>
</configuration>
</plugin>
</plugins>

<resources>
<resource>
<directory>${basedir}</directory>
Expand All @@ -367,19 +356,4 @@
</testResources>
</build>

<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
</plugins>
</reporting>

</project>

0 comments on commit 06646f3

Please sign in to comment.