mirror of https://github.com/apache/openjpa.git
OPENJPA-1712 fix exclusion
git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/2.0.x@986337 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1ba05bac06
commit
934143df65
19
pom.xml
19
pom.xml
|
@ -576,6 +576,18 @@
|
||||||
<artifactId>jmock-junit3</artifactId>
|
<artifactId>jmock-junit3</artifactId>
|
||||||
<version>2.5.1</version>
|
<version>2.5.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>openjpa-maven-plugin</artifactId>
|
||||||
|
<version>1.1</version>
|
||||||
|
<exclusions>
|
||||||
|
<!-- remove cyclical dependency -->
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.apache.openjpa</groupId>
|
||||||
|
<artifactId>openjpa</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
||||||
|
@ -821,13 +833,6 @@
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>openjpa-maven-plugin</artifactId>
|
<artifactId>openjpa-maven-plugin</artifactId>
|
||||||
<version>1.1</version>
|
<version>1.1</version>
|
||||||
<exclusions>
|
|
||||||
<!-- remove cyclical dependency -->
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.apache.openjpa</groupId>
|
|
||||||
<artifactId>openjpa</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
|
Loading…
Reference in New Issue