You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by am...@apache.org on 2011/04/11 13:33:14 UTC

svn commit: r1091037 - in /cayenne/main/trunk/tutorials: tutorial-rop-client/pom.xml tutorial-rop-server/pom.xml tutorial/pom.xml

Author: amaniatis
Date: Mon Apr 11 11:33:14 2011
New Revision: 1091037

URL: http://svn.apache.org/viewvc?rev=1091037&view=rev
Log:
Tutorials need their own version numbers for maven plugins since they aren't inheriting from the parent pom. (Perhaps they should?)

Modified:
    cayenne/main/trunk/tutorials/tutorial-rop-client/pom.xml
    cayenne/main/trunk/tutorials/tutorial-rop-server/pom.xml
    cayenne/main/trunk/tutorials/tutorial/pom.xml

Modified: cayenne/main/trunk/tutorials/tutorial-rop-client/pom.xml
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/tutorials/tutorial-rop-client/pom.xml?rev=1091037&r1=1091036&r2=1091037&view=diff
==============================================================================
--- cayenne/main/trunk/tutorials/tutorial-rop-client/pom.xml (original)
+++ cayenne/main/trunk/tutorials/tutorial-rop-client/pom.xml Mon Apr 11 11:33:14 2011
@@ -39,6 +39,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-compiler-plugin</artifactId>
+				<version>2.3.2</version>
 				<configuration>
 					<source>1.5</source>
 					<target>1.5</target>
@@ -47,6 +48,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-deploy-plugin</artifactId>
+				<version>2.5</version>
 				<configuration>
 					<skip>true</skip>
 				</configuration>

Modified: cayenne/main/trunk/tutorials/tutorial-rop-server/pom.xml
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/tutorials/tutorial-rop-server/pom.xml?rev=1091037&r1=1091036&r2=1091037&view=diff
==============================================================================
--- cayenne/main/trunk/tutorials/tutorial-rop-server/pom.xml (original)
+++ cayenne/main/trunk/tutorials/tutorial-rop-server/pom.xml Mon Apr 11 11:33:14 2011
@@ -44,6 +44,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-compiler-plugin</artifactId>
+				<version>2.3.2</version>
 				<configuration>
 					<source>1.5</source>
 					<target>1.5</target>
@@ -65,6 +66,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-deploy-plugin</artifactId>
+				<version>2.5</version>
 				<configuration>
 					<skip>true</skip>
 				</configuration>

Modified: cayenne/main/trunk/tutorials/tutorial/pom.xml
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/tutorials/tutorial/pom.xml?rev=1091037&r1=1091036&r2=1091037&view=diff
==============================================================================
--- cayenne/main/trunk/tutorials/tutorial/pom.xml (original)
+++ cayenne/main/trunk/tutorials/tutorial/pom.xml Mon Apr 11 11:33:14 2011
@@ -39,6 +39,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-compiler-plugin</artifactId>
+				<version>2.3.2</version>
 				<configuration>
 					<source>1.5</source>
 					<target>1.5</target>
@@ -52,6 +53,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-deploy-plugin</artifactId>
+				<version>2.5</version>
 				<configuration>
 					<skip>true</skip>
 				</configuration>



Re: svn commit: r1091037 - in /cayenne/main/trunk/tutorials: tutorial-rop-client/pom.xml tutorial-rop-server/pom.xml tutorial/pom.xml

Posted by Aristedes Maniatis <ar...@maniatis.org>.
On 11/04/11 9:35 PM, Andrus Adamchik wrote:
>> Tutorials need their own version numbers for maven plugins since they aren't inheriting from the parent pom. (Perhaps they should?)
> That was another one of those workarounds to build modules with no dependancies on Cayenne Maven internals.

Yes, I can see. I just did the simple thing for now to avoid maven complaining and prevent upgrades of maven plugins from breaking things. But it is a candidate for cleaning up with a new inheritance.

The actual work is trivial really (we don't even need to move folders around since that is completely unrelated unless we care about people downloading one little extra pom).

Ari


-- 
-------------------------->
Aristedes Maniatis
GPG fingerprint CBFB 84B4 738D 4E87 5E5C  5EFA EF6A 7D2E 3E49 102A

Re: svn commit: r1091037 - in /cayenne/main/trunk/tutorials: tutorial-rop-client/pom.xml tutorial-rop-server/pom.xml tutorial/pom.xml

Posted by Andrus Adamchik <an...@objectstyle.org>.
On Apr 11, 2011, at 2:33 PM, amaniatis@apache.org wrote:

> Tutorials need their own version numbers for maven plugins since they aren't inheriting from the parent pom. (Perhaps they should?)

That was another one of those workarounds to build modules with no dependancies on Cayenne Maven internals. 

Andrus