You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2008/01/06 23:08:35 UTC

svn commit: r609431 - in /openejb/trunk/openejb3/container/openejb-core: pom.xml src/test/resources/META-INF/application.xml

Author: jlaskowski
Date: Sun Jan  6 14:08:34 2008
New Revision: 609431

URL: http://svn.apache.org/viewvc?rev=609431&view=rev
Log:
Fix version numbers

Modified:
    openejb/trunk/openejb3/container/openejb-core/pom.xml
    openejb/trunk/openejb3/container/openejb-core/src/test/resources/META-INF/application.xml

Modified: openejb/trunk/openejb3/container/openejb-core/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/pom.xml?rev=609431&r1=609430&r2=609431&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-core/pom.xml (original)
+++ openejb/trunk/openejb3/container/openejb-core/pom.xml Sun Jan  6 14:08:34 2008
@@ -38,6 +38,12 @@
         <filtering>true</filtering>
       </resource>
     </resources>
+    <testResources>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <filtering>true</filtering>
+      </testResource>
+    </testResources>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -79,8 +85,8 @@
               <value>file:///${basedir}/target/classes/embedded.logging.properties</value>
             </property>
           </systemProperties>
-          <excludes>
-            <exclude>**/TestHandler.java</exclude>
+          <excludes>
+            <exclude>**/TestHandler.java</exclude>
           </excludes>
         </configuration>
       </plugin>
@@ -117,24 +123,24 @@
               <!--<addClasspath>true</addClasspath>-->
             </manifest>
             <manifestEntries>
-              <Class-Path>openejb-loader-${version}.jar openejb-client-${version}.jar xbean-finder-3.2.jar</Class-Path>
+              <Class-Path>openejb-loader-${version}.jar openejb-client-${version}.jar xbean-finder-${xbeanVersion}.jar</Class-Path>
               <J2EE-DeploymentFactory-Implementation-Class>org.apache.openejb.config.VmDeploymentFactory</J2EE-DeploymentFactory-Implementation-Class>
             </manifestEntries>
           </archive>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>rat-maven-plugin</artifactId>
-        <configuration>
-          <excludes>
-            <exclude>src/main/resources/META-INF/org.apache.openejb.cli/validate.examples</exclude>
-            <exclude>src/main/resources/META-INF/org.apache.openejb.cli/validate.help</exclude>
-            <exclude>src/main/resources/META-INF/org.apache.openejb.resource.jdbc.DataSourcePlugin/*</exclude>
-            <exclude>src/main/resources/schema/ejb-jar_1_1.xsd</exclude>
-          </excludes>
-        </configuration>
-      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>rat-maven-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>src/main/resources/META-INF/org.apache.openejb.cli/validate.examples</exclude>
+            <exclude>src/main/resources/META-INF/org.apache.openejb.cli/validate.help</exclude>
+            <exclude>src/main/resources/META-INF/org.apache.openejb.resource.jdbc.DataSourcePlugin/*</exclude>
+            <exclude>src/main/resources/schema/ejb-jar_1_1.xsd</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <dependencies>
@@ -340,15 +346,15 @@
     <dependency>
       <groupId>wsdl4j</groupId>
       <artifactId>wsdl4j</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>xmlunit</groupId>
-      <artifactId>xmlunit</artifactId>
-      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>xmlunit</groupId>
+      <artifactId>xmlunit</artifactId>
+      <scope>test</scope>
     </dependency>
   </dependencies>
   <profiles>
-    <profile>
+    <profile>
       <id>openejb.debug</id>
       <build>
         <plugins>
@@ -369,10 +375,10 @@
                   <value>file:///${basedir}/target/classes/embedded.logging.properties</value>
                 </property>
               </systemProperties>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

Modified: openejb/trunk/openejb3/container/openejb-core/src/test/resources/META-INF/application.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/src/test/resources/META-INF/application.xml?rev=609431&r1=609430&r2=609431&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-core/src/test/resources/META-INF/application.xml (original)
+++ openejb/trunk/openejb3/container/openejb-core/src/test/resources/META-INF/application.xml Sun Jan  6 14:08:34 2008
@@ -27,12 +27,12 @@
   <display-name>openejb-itests-app</display-name>
   <description>OpenEJB is an open source, modular, configurable and extendable EJB Container System and EJB Server.</description>
   <module>
-    <ejb>openejb-itests-beans-3.0-incubating-SNAPSHOT.jar</ejb>
+    <ejb>openejb-itests-beans-${version}.jar</ejb>
   </module>
    <module>
-    <ejb>openejb-itests-interceptor-beans-3.0-incubating-SNAPSHOT.jar</ejb>
+    <ejb>openejb-itests-interceptor-beans-${version}.jar</ejb>
   </module>
   <module>
-    <java>openejb-itests-client-3.0-incubating-SNAPSHOT.jar</java>
+    <java>openejb-itests-client-${version}.jar</java>
   </module>
-</application>
\ No newline at end of file
+</application>