mirror of https://github.com/apache/openjpa.git
OPENJPA-1712 Merged in from 2.0.x - turn off creation of sources.jar for developer builds and fix test-java5 profile by adding m-compiler-p back in
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@989848 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4d6fd5d806
commit
dc42b99108
20
pom.xml
20
pom.xml
|
@ -65,9 +65,9 @@
|
|||
anything else allows the test to execute normally
|
||||
-->
|
||||
<tests.openjpa.allowfailure>ignore</tests.openjpa.allowfailure>
|
||||
<!--turn off sources.jar generation by setting to none and false -->
|
||||
<createSource>verify</createSource>
|
||||
<createSources>true</createSources>
|
||||
<!--turn on sources.jar generation by setting to verify and true -->
|
||||
<createSource>none</createSource>
|
||||
<createSources>false</createSources>
|
||||
<!-- common JDBC driver versions -->
|
||||
<derby.version>10.5.3.0_1</derby.version>
|
||||
<hsqldb.version>1.8.0.10</hsqldb.version>
|
||||
|
@ -164,6 +164,16 @@
|
|||
<!-- Override some release settings inherited from apache-7.pom -->
|
||||
<profile>
|
||||
<id>apache-release</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>performRelease</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<!--turn on sources.jar generation -->
|
||||
<createSource>verify</createSource>
|
||||
<createSources>true</createSources>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -867,6 +877,10 @@
|
|||
</pluginManagement>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>ianal-maven-plugin</artifactId>
|
||||
|
|
Loading…
Reference in New Issue