Skip to content

Commit

Permalink
Merge pull request #168 from jGauravGupta/FISH-6006
Browse files Browse the repository at this point in the history
FISH-6006 Payara CI Managed profile
  • Loading branch information
arjantijms committed Jun 9, 2022
2 parents f91d990 + 2ff722e commit c49cb1d
Showing 1 changed file with 64 additions and 1 deletion.
65 changes: 64 additions & 1 deletion tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,71 @@
</build>
</profile>

<profile>
<id>payara-ci-managed</id>
<properties>
<payara.root>${maven.multiModuleProjectDirectory}/target</payara.root>
<payara.version>6.2022.1.Alpha3-SNAPSHOT</payara.version>
<payara.arquillian.container.version>3.0.alpha3</payara.arquillian.container.version>
</properties>
<dependencies>
<dependency>
<groupId>fish.payara.arquillian</groupId>
<artifactId>arquillian-payara-server-managed</artifactId>
<version>${payara.arquillian.container.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>fish.payara.arquillian</groupId>
<artifactId>payara-client-ee9</artifactId>
<scope>test</scope>
<version>${payara.arquillian.container.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>process-test-classes</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>${payara.root}</outputDirectory>
<markersDirectory>${payara.root}/dependency-maven-plugin-markers</markersDirectory>
<artifactItems>
<artifactItem>
<groupId>fish.payara.distributions</groupId>
<artifactId>payara</artifactId>
<version>${payara.version}</version>
<type>zip</type>
<overWrite>false</overWrite>
<outputDirectory>${payara.root}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<payara.home>${payara.root}/payara6</payara.home>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</profile>

<!--
<!--
The profiles for Tomcat and Piranha are currently out of date and don't' work.
They are here as starter for future working profiles.
-->
Expand Down

0 comments on commit c49cb1d

Please sign in to comment.