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:25 UTC

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

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 -->
     <!-- =================== -->