-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1657 from arjantijms/transactions_gf_runner
Transactions gf runner
- Loading branch information
Showing
21 changed files
with
186 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2024 Contributors to the Eclipse Foundation. | ||
Copyright (c) 2022 Oracle and/or its affiliates. All rights reserved. | ||
This program and the accompanying materials are made available under the | ||
terms of the Eclipse Public License v. 2.0, which is available at | ||
http://www.eclipse.org/legal/epl-2.0. | ||
This Source Code may also be made available under the following Secondary | ||
Licenses when the conditions for such availability set forth in the | ||
Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
version 2 with the GNU Classpath Exception, which is available at | ||
https://www.gnu.org/software/classpath/license.html. | ||
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.glassfish</groupId> | ||
<artifactId>standalone-tck</artifactId> | ||
<version>11.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>transactions-tck</artifactId> | ||
<version>4.0.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<modules> | ||
<module>transactions-tck-install</module> | ||
<module>transactions-tck-run</module> | ||
</modules> | ||
</project> |
112 changes: 112 additions & 0 deletions
112
glassfish-runner/transactions-tck/transactions-tck-install/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2021, 2024 Contributors to the Eclipse Foundation. All rights reserved. | ||
This program and the accompanying materials are made available under the | ||
terms of the Eclipse Public License v. 2.0, which is available at | ||
http://www.eclipse.org/legal/epl-2.0. | ||
This Source Code may also be made available under the following Secondary | ||
Licenses when the conditions for such availability set forth in the | ||
Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
version 2 with the GNU Classpath Exception, which is available at | ||
https://www.gnu.org/software/classpath/license.html. | ||
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.glassfish</groupId> | ||
<artifactId>transactions-tck</artifactId> | ||
<version>4.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>transactions-tck-install</artifactId> | ||
<packaging>pom</packaging> | ||
<name>TCK: Install Jakarta transactions TCK</name> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.googlecode.maven-download-plugin</groupId> | ||
<artifactId>download-maven-plugin</artifactId> | ||
<version>1.11.0</version> | ||
<configuration> | ||
<unpack>true</unpack> | ||
<outputDirectory>${project.build.directory}</outputDirectory> | ||
</configuration> | ||
<executions> | ||
|
||
<execution> | ||
<id>download-tck-tools</id> | ||
<goals> | ||
<goal>wget</goal> | ||
</goals> | ||
<phase>generate-resources</phase> | ||
<configuration> | ||
<url>https://github.com/eclipse-ee4j/jakartaee-tck-tools/archive/refs/heads/master.zip</url> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>download-transactions-tck</id> | ||
<goals> | ||
<goal>wget</goal> | ||
</goals> | ||
<phase>generate-resources</phase> | ||
<configuration> | ||
<excludes>**/extensions.xml</excludes> | ||
<url>https://github.com/jakartaee/platform-tck/archive/refs/heads/main.zip</url> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-invoker-plugin</artifactId> | ||
<version>3.8.0</version> | ||
<executions> | ||
|
||
<!-- Build and install the platform TCK --> | ||
<execution> | ||
<id>tck_full_build</id> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<phase>generate-resources</phase> | ||
<configuration> | ||
<streamLogs>true</streamLogs> | ||
<projectsDirectory>${project.build.directory}/platform-tck-main</projectsDirectory> | ||
<pomIncludes> | ||
<pomInclude>pom.xml</pomInclude> | ||
</pomIncludes> | ||
<goals>clean install</goals> | ||
</configuration> | ||
</execution> | ||
|
||
<!-- Build and install the Arquillian tools for the TCK --> | ||
<execution> | ||
<id>tools_build</id> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<phase>process-resources</phase> | ||
<configuration> | ||
<streamLogs>true</streamLogs> | ||
<projectsDirectory>${project.build.directory}/jakartaee-tck-tools-master/arquillian</projectsDirectory> | ||
<pomIncludes> | ||
<pomInclude>pom.xml</pomInclude> | ||
</pomIncludes> | ||
<goals>clean source:jar install</goals> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.