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

[tomee-tck] 02/03: Eliminate unused OpenEJB standalone 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 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 -->
     <!-- =================== -->