You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2020/06/19 21:46:24 UTC

[tomee-tck] branch jakartaee9-tck updated (da8b3ba -> e9dc3d9)

This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a change to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git.


    from da8b3ba  Switch all dists over to the "jakartaee9" versions
     new fff815a  Eliminate overhead of TomEE Webapp profile
     new b52158a  Eliminate unused OpenEJB standalone profile
     new e9dc3d9  Update to 9.0.0-M1 for a quick test

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 185 +++++++++-------------------------------------------------------
 1 file changed, 25 insertions(+), 160 deletions(-)


[tomee-tck] 01/03: Eliminate overhead of TomEE Webapp profile

Posted by db...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit fff815aacc7ccea8bffbab39df50ed296d78ef22
Author: David Blevins <da...@gmail.com>
AuthorDate: Fri Jun 19 10:46:06 2020 -0700

    Eliminate overhead of TomEE Webapp profile
---
 pom.xml | 78 -----------------------------------------------------------------
 1 file changed, 78 deletions(-)

diff --git a/pom.xml b/pom.xml
index f4635d3..89a7300 100644
--- a/pom.xml
+++ b/pom.xml
@@ -321,84 +321,6 @@
     </profile>
 
     <!-- =================== -->
-    <!-- Tomcat Environment -->
-    <!-- =================== -->
-
-    <profile>
-      <id>tomcat-environment</id>
-
-      <activation>
-        <property>
-          <name>webcontainer</name>
-          <value>tomcat</value>
-        </property>
-      </activation>
-
-      <properties>
-        <!-- where we will unpack tomcat -->
-        <openejb.home>${project.build.directory}/apache-tomcat-${tomcat.version}</openejb.home>
-      </properties>
-
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-dependency-plugin</artifactId>
-            <version>${version.maven-dependency-plugin}</version>
-
-            <executions>
-              <execution>
-                <id>unpack</id>
-                <phase>pre-integration-test</phase>
-                <goals>
-                  <goal>unpack</goal>
-                </goals>
-                <configuration>
-                  <artifactItems>
-                    <artifactItem>
-                      <groupId>org.apache.openejb.tck</groupId>
-                      <artifactId>tomcat</artifactId>
-                      <version>${tomcat.version}</version>
-                      <type>zip</type>
-                      <outputDirectory>${project.build.directory}</outputDirectory>
-                    </artifactItem>
-                    <artifactItem>
-                      <groupId>org.apache.tomee</groupId>
-                      <artifactId>tomee-webapp</artifactId>
-                      <version>${tomee.version}</version>
-                      <type>war</type>
-                      <outputDirectory>${openejb.home}/webapps/tomee</outputDirectory>
-                    </artifactItem>
-                    <artifactItem>
-                      <groupId>${openejb.groupId}</groupId>
-                      <artifactId>tomee-loader</artifactId>
-                      <version>${tomee.version}</version>
-                      <type>jar</type>
-                      <outputDirectory>${openejb.home}/lib</outputDirectory>
-                    </artifactItem>
-                  </artifactItems>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-
-      <dependencies>
-
-        <dependency>
-          <groupId>${openejb.groupId}</groupId>
-          <artifactId>tomee-webapp</artifactId>
-          <type>war</type>
-          <version>${tomee.version}</version>
-        </dependency>
-
-      </dependencies>
-
-    </profile>
-
-
-    <!-- =================== -->
     <!-- TomEE Environment -->
     <!-- =================== -->
 


[tomee-tck] 02/03: Eliminate unused OpenEJB standalone profile

Posted by db...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit b52158aa2516196c47d9ee7df0577170dbf31877
Author: David Blevins <da...@gmail.com>
AuthorDate: Fri Jun 19 10:48:48 2020 -0700

    Eliminate unused OpenEJB standalone profile
---
 pom.xml | 59 -----------------------------------------------------------
 1 file changed, 59 deletions(-)

diff --git a/pom.xml b/pom.xml
index 89a7300..3539fb7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -262,65 +262,6 @@
   <profiles>
 
     <!-- =================== -->
-    <!-- Standalone Environment -->
-    <!-- =================== -->
-
-    <profile>
-      <id>standalone-environment</id>
-
-      <activation>
-        <property>
-          <name>webcontainer</name>
-          <value>none</value>
-        </property>
-      </activation>
-
-      <properties>
-        <!-- where we will unpack openejb -->
-        <openejb.home>${project.build.directory}/apache-openejb-${openejb.version}</openejb.home>
-      </properties>
-
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-dependency-plugin</artifactId>
-
-            <executions>
-              <execution>
-                <id>unpack</id>
-                <phase>pre-integration-test</phase>
-                <goals>
-                  <goal>unpack</goal>
-                </goals>
-                <configuration>
-                  <artifactItems>
-                    <artifactItem>
-                      <groupId>${openejb.groupId}</groupId>
-                      <artifactId>openejb-standalone</artifactId>
-                      <version>${openejb.version}</version>
-                      <type>zip</type>
-                      <outputDirectory>${project.build.directory}</outputDirectory>
-                    </artifactItem>
-                  </artifactItems>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-
-      <dependencies>
-        <dependency>
-          <groupId>${openejb.groupId}</groupId>
-          <artifactId>openejb-standalone</artifactId>
-          <type>zip</type>
-          <version>${openejb.version}</version>
-        </dependency>
-      </dependencies>
-    </profile>
-
-    <!-- =================== -->
     <!-- TomEE Environment -->
     <!-- =================== -->
 


[tomee-tck] 03/03: Update to 9.0.0-M1 for a quick test

Posted by db...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit e9dc3d97ad14606b1028e7cfd3e10a5cdfa9dd56
Author: David Blevins <da...@gmail.com>
AuthorDate: Fri Jun 19 14:46:01 2020 -0700

    Update to 9.0.0-M1 for a quick test
---
 pom.xml | 48 +++++++++++++++++++++++++-----------------------
 1 file changed, 25 insertions(+), 23 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3539fb7..3be22b5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,8 +38,10 @@
   <properties>
 
     <openejb.groupId>org.apache.tomee</openejb.groupId>
-    <openejb.version>8.0.3-SNAPSHOT</openejb.version>
-    <tomee.version>8.0.3-SNAPSHOT</tomee.version>
+    <openejb.version>8.0.3</openejb.version>
+    <tomee.version>8.0.3</tomee.version>
+    <tomee.zip.groupId>org.apache.tomee.jakarta</tomee.zip.groupId>
+    <tomee.zip.version>9.0.0-M1</tomee.zip.version>
 
     <tomcat.version>9.0.30</tomcat.version>
 
@@ -277,7 +279,7 @@
 
       <properties>
         <!-- where we will unpack tomee -->
-        <openejb.home>target/apache-tomee-webprofile-${tomee.version}</openejb.home>
+        <openejb.home>target/apache-tomee-webprofile-${tomee.zip.version}</openejb.home>
       </properties>
 
       <build>
@@ -296,12 +298,12 @@
                 <configuration>
                   <artifactItems>
                     <artifactItem>
-                      <groupId>${openejb.groupId}</groupId>
+                      <groupId>${tomee.zip.groupId}</groupId>
                       <artifactId>apache-tomee</artifactId>
-                      <version>${tomee.version}</version>
+                      <version>${tomee.zip.version}</version>
+                      <classifier>webprofile</classifier>
                       <type>zip</type>
                       <outputDirectory>${project.build.directory}</outputDirectory>
-                      <classifier>webprofile-jakartaee9</classifier>
                     </artifactItem>
                   </artifactItems>
                 </configuration>
@@ -314,11 +316,11 @@
       <dependencies>
 
         <dependency>
-          <groupId>${openejb.groupId}</groupId>
+          <groupId>${tomee.zip.groupId}</groupId>
           <artifactId>apache-tomee</artifactId>
+          <version>${tomee.zip.version}</version>
+          <classifier>webprofile</classifier>
           <type>zip</type>
-          <version>${tomee.version}</version>
-          <classifier>webprofile-jakartaee9</classifier>
         </dependency>
 
       </dependencies>
@@ -336,7 +338,7 @@
       </activation>
 
       <properties>
-        <openejb.home>target/apache-tomee-plus-${tomee.version}</openejb.home>
+        <openejb.home>target/apache-tomee-plus-${tomee.zip.version}</openejb.home>
       </properties>
 
       <build>
@@ -354,12 +356,12 @@
                 <configuration>
                   <artifactItems>
                     <artifactItem>
-                      <groupId>${openejb.groupId}</groupId>
+                      <groupId>${tomee.zip.groupId}</groupId>
                       <artifactId>apache-tomee</artifactId>
-                      <version>${tomee.version}</version>
+                      <version>${tomee.zip.version}</version>
+                      <classifier>plus</classifier>
                       <type>zip</type>
                       <outputDirectory>${project.build.directory}</outputDirectory>
-                      <classifier>plus-jakartaee9</classifier>
                     </artifactItem>
                   </artifactItems>
                 </configuration>
@@ -372,11 +374,11 @@
       <dependencies>
 
         <dependency>
-          <groupId>${openejb.groupId}</groupId>
+          <groupId>${tomee.zip.groupId}</groupId>
           <artifactId>apache-tomee</artifactId>
+          <version>${tomee.zip.version}</version>
+          <classifier>plus</classifier>
           <type>zip</type>
-          <version>${tomee.version}</version>
-          <classifier>plus-jakartaee9</classifier>
         </dependency>
 
       </dependencies>
@@ -394,7 +396,7 @@
       </activation>
 
       <properties>
-        <openejb.home>target/apache-tomee-plume-${tomee.version}</openejb.home>
+        <openejb.home>target/apache-tomee-plume-${tomee.zip.version}</openejb.home>
       </properties>
 
       <build>
@@ -412,12 +414,12 @@
                 <configuration>
                   <artifactItems>
                     <artifactItem>
-                      <groupId>${openejb.groupId}</groupId>
+                      <groupId>${tomee.zip.groupId}</groupId>
                       <artifactId>apache-tomee</artifactId>
-                      <version>${tomee.version}</version>
+                      <version>${tomee.zip.version}</version>
+                      <classifier>plume</classifier>
                       <type>zip</type>
                       <outputDirectory>${project.build.directory}</outputDirectory>
-                      <classifier>plume-jakartaee9</classifier>
                     </artifactItem>
                   </artifactItems>
                 </configuration>
@@ -430,11 +432,11 @@
       <dependencies>
 
         <dependency>
-          <groupId>${openejb.groupId}</groupId>
+          <groupId>${tomee.zip.groupId}</groupId>
           <artifactId>apache-tomee</artifactId>
+          <version>${tomee.zip.version}</version>
+          <classifier>plume</classifier>
           <type>zip</type>
-          <version>${tomee.version}</version>
-          <classifier>plume-jakartaee9</classifier>
         </dependency>
 
       </dependencies>