You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by bd...@apache.org on 2006/07/29 14:12:43 UTC

svn commit: r426784 - in /incubator/cayenne/main/trunk: cayenne-jpa/pom.xml cayenne/cayenne-java-1.5/pom.xml cayenne/cayenne-java/cayenne/pom.xml cayenne/pom.xml pom.xml

Author: bdudney
Date: Sat Jul 29 05:12:42 2006
New Revision: 426784

URL: http://svn.apache.org/viewvc?rev=426784&view=rev
Log:
more pom updates, mostly clean up but also getting source jars generated

Modified:
    incubator/cayenne/main/trunk/cayenne-jpa/pom.xml
    incubator/cayenne/main/trunk/cayenne/cayenne-java-1.5/pom.xml
    incubator/cayenne/main/trunk/cayenne/cayenne-java/cayenne/pom.xml
    incubator/cayenne/main/trunk/cayenne/pom.xml
    incubator/cayenne/main/trunk/pom.xml

Modified: incubator/cayenne/main/trunk/cayenne-jpa/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne-jpa/pom.xml?rev=426784&r1=426783&r2=426784&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/cayenne-jpa/pom.xml (original)
+++ incubator/cayenne/main/trunk/cayenne-jpa/pom.xml Sat Jul 29 05:12:42 2006
@@ -146,6 +146,17 @@
 					<target>1.5</target>
 				</configuration>
 			</plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>**/*Test.java</include>
+                        <exclude>**/Test*.java</exclude>
+                    </includes>
+                </configuration>
+            </plugin>
+
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-jar-plugin</artifactId>
@@ -157,6 +168,21 @@
 					</archive>
 				</configuration>
 			</plugin>
+
+          <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>bundle-source-jar</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
 		</plugins>
 	</build>
 

Modified: incubator/cayenne/main/trunk/cayenne/cayenne-java-1.5/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/cayenne-java-1.5/pom.xml?rev=426784&r1=426783&r2=426784&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/cayenne/cayenne-java-1.5/pom.xml (original)
+++ incubator/cayenne/main/trunk/cayenne/cayenne-java-1.5/pom.xml Sat Jul 29 05:12:42 2006
@@ -53,7 +53,7 @@
       </dependency>
 
       <dependency>
-        <groupId>hessian</groupId>
+        <groupId>com.caucho</groupId>
         <artifactId>hessian</artifactId>
       </dependency>
 
@@ -69,7 +69,7 @@
 
       <dependency>
         <groupId>jgroups</groupId>
-        <artifactId>jgroups</artifactId>
+        <artifactId>jgroups-all</artifactId>
       </dependency>
 
       <dependency>
@@ -113,8 +113,8 @@
       </dependency>
 
       <dependency>
-        <groupId>jms</groupId>
-        <artifactId>jms</artifactId>
+        <groupId>org.apache.geronimo.specs</groupId>
+        <artifactId>geronimo-jms_1.1_spec</artifactId>
       </dependency>
 
       <dependency>
@@ -183,6 +183,20 @@
             <source>1.5</source>
             <target>1.5</target>
           </configuration>
+        </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-source-plugin</artifactId>
+          <executions>
+            <execution>
+              <id>bundle-source-jar</id>
+              <phase>package</phase>
+              <goals>
+                <goal>jar</goal>
+              </goals>
+            </execution>
+          </executions>
         </plugin>
 
       </plugins>

Modified: incubator/cayenne/main/trunk/cayenne/cayenne-java/cayenne/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/cayenne-java/cayenne/pom.xml?rev=426784&r1=426783&r2=426784&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/cayenne/cayenne-java/cayenne/pom.xml (original)
+++ incubator/cayenne/main/trunk/cayenne/cayenne-java/cayenne/pom.xml Sat Jul 29 05:12:42 2006
@@ -151,6 +151,13 @@
             <artifactId>mockrunner</artifactId>
         </dependency>
 
+	<dependency>
+	  <groupId>hsqldb</groupId>
+	  <artifactId>hsqldb</artifactId>
+	  <version>1.8.0.1</version>
+	  <scope>test</scope>
+	</dependency>
+
     </dependencies>
 
     <build>
@@ -175,6 +182,20 @@
                         <phase>package</phase>
                         <goals>
                             <goal>test-jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>bundle-source-jar</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>jar</goal>
                         </goals>
                     </execution>
                 </executions>

Modified: incubator/cayenne/main/trunk/cayenne/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/pom.xml?rev=426784&r1=426783&r2=426784&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/cayenne/pom.xml (original)
+++ incubator/cayenne/main/trunk/cayenne/pom.xml Sat Jul 29 05:12:42 2006
@@ -37,7 +37,7 @@
     
     <modules>
       <module>cayenne-java</module>
-      <!-- module>caynne-java-1.5</module -->
+      <module>cayenne-java-1.5</module>
     </modules>
 
 </project>

Modified: incubator/cayenne/main/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/pom.xml?rev=426784&r1=426783&r2=426784&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/pom.xml (original)
+++ incubator/cayenne/main/trunk/pom.xml Sat Jul 29 05:12:42 2006
@@ -243,7 +243,7 @@
             <dependency>
                 <groupId>jgroups</groupId>
                 <artifactId>jgroups-all</artifactId>
-				<version>2.2.7</version>
+		<version>2.2.7</version>
             </dependency>
 
             <dependency>
@@ -404,6 +404,10 @@
 
     </pluginRepositories>
     
+    <build>
+        <defaultGoal>install</defaultGoal>
+    </build>
+
     <!-- FIXME -->
     <!-- distributionManagement>
         <repository>