Skip to content

Commit

Permalink
Add the api jar for signature tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rzo1 committed Nov 21, 2023
1 parent f4b359b commit 5e3baa4
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion tck/jsonp-signature-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,32 @@
</testResource>
</testResources>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>generate-test-resources</phase>
<goals>
<goal>copy</goal>
</goals>

<configuration>
<artifactItems>
<artifactItem>
<groupId>org.apache.tomee</groupId>
<artifactId>jakartaee-api</artifactId>
<version>${version.jakartaee-api}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/signaturedirectory</outputDirectory>
<destFileName>jakartaee-api.jar</destFileName>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 5e3baa4

Please sign in to comment.