Author: dwoods
Date: Wed Jun 30 16:59:03 2010
New Revision: 959376
URL: http://svn.apache.org/viewvc?rev=959376&view=rev
Log:
OPENJPA-1712 Don't publish tck POM to repos
Modified:
openjpa/trunk/openjpa-integration/tck/pom.xml
Modified: openjpa/trunk/openjpa-integration/tck/pom.xml
URL:
http://svn.apache.org/viewvc/openjpa/trunk/openjpa-integration/tck/pom.xml?rev=959376&r1=959375&r2=959376&view=diff
==============================================================================
--- openjpa/trunk/openjpa-integration/tck/pom.xml (original)
+++ openjpa/trunk/openjpa-integration/tck/pom.xml Wed Jun 30 16:59:03 2010
@@ -62,21 +62,37 @@
the release plugin.
-->
<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">
+
<modelVersion>4.0.0</modelVersion>
- <artifactId>openjpa-integration-tck</artifactId>
- <packaging>pom</packaging>
- <name>OpenJPA Integration Tests - JPA TCK</name>
- <description>OpenJPA Integration Tests - JPA TCK</description>
+
<parent>
<groupId>org.apache.openjpa</groupId>
<artifactId>openjpa-integration</artifactId>
<version>2.1.0-SNAPSHOT</version>
</parent>
+ <artifactId>openjpa-integration-tck</artifactId>
+ <packaging>pom</packaging>
+ <name>OpenJPA Integration Tests - JPA TCK</name>
+ <description>OpenJPA Integration Tests - JPA TCK</description>
+
<properties>
<openjpa.Log>DefaultLevel=WARN</openjpa.Log>
</properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <!-- Don't publish these artifacts to central -->
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
<profiles>
<profile>
<!-- JPA 2.0 TCK Profile -->