-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #4601 - Add Jakarta CDI TCK certification for Piranha Core Prof…
…ile (#4602)
- Loading branch information
Showing
18 changed files
with
1,255 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<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>cloud.piranha.test.tck.coreprofile.cdi</groupId> | ||
<artifactId>project</artifactId> | ||
<version>25.3.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>installer</artifactId> | ||
<packaging>pom</packaging> | ||
<name>Piranha - Test - TCK - Core Profile - CDI TCK - Installer</name> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>pre-integration-test</id> | ||
<phase>pre-integration-test</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<target> | ||
<!-- Download, unzip and rename TCK --> | ||
<get src="https://download.eclipse.org/jakartaee/cdi/4.1/cdi-tck-${cdi.tck.version}-dist.zip" | ||
dest="${project.build.directory}/tck.zip" | ||
skipexisting="true"/> | ||
<unzip src="${project.build.directory}/tck.zip" | ||
dest="${project.build.directory}"/> | ||
<move file="${project.build.directory}/cdi-tck-${cdi.tck.version}" | ||
tofile="${project.build.directory}/tck"/> | ||
|
||
<!-- Install the TCK artifacts into local repository --> | ||
<exec dir="${project.build.directory}/tck/artifacts" | ||
executable="mvn"> | ||
<arg value="install"/> | ||
</exec> | ||
</target> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
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,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<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>cloud.piranha.test.tck.coreprofile</groupId> | ||
<artifactId>project</artifactId> | ||
<version>25.3.0-SNAPSHOT</version> | ||
</parent> | ||
<groupId>cloud.piranha.test.tck.coreprofile.cdi</groupId> | ||
<artifactId>project</artifactId> | ||
<packaging>pom</packaging> | ||
<name>Piranha - Test - TCK - Core Profile - CDI TCK - Project</name> | ||
<modules> | ||
<module>installer</module> | ||
<module>runner</module> | ||
</modules> | ||
</project> |
Oops, something went wrong.