This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat-tck.git
The following commit(s) were added to refs/heads/main by this push: new 6101ea8 At least one of the TCKs requires javatest.jar 6101ea8 is described below commit 6101ea82d58b88e1c76eb2df6b75111f4ba6a790 Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Jul 22 14:53:51 2024 +0100 At least one of the TCKs requires javatest.jar This should really be in Maven Central. It isn't, so... --- download/pom.xml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/download/pom.xml b/download/pom.xml index a8cc541..8825802 100644 --- a/download/pom.xml +++ b/download/pom.xml @@ -92,6 +92,19 @@ <sha256>5446aa866601a7c4c425f74054590cfc7f4fc05592a572d399ecc8694e265489</sha256> </configuration> </execution> + <execution> + <id>download-javatest-jar</id> + <phase>pre-integration-test</phase> + <goals> + <goal>wget</goal> + </goals> + <configuration> + <url>https://github.com/jakartaee/platform-tck/raw/040a4f57f87342629da0242d1ced99647ac44676/lib/javatest.jar</url> + <unpack>false</unpack> + <outputDirectory>${project.build.directory}</outputDirectory> + <sha256>73d0c322e76839c405f2000b568cc8906977b430ba23e83f20d420345e8a13a4</sha256> + </configuration> + </execution> </executions> </plugin> <plugin> @@ -186,6 +199,20 @@ <file>${project.build.directory}/pages-tck/artifacts/jakarta-pages-tck-${tck.pages.version}.jar</file> </configuration> </execution> + <execution> + <id>install-javatest-jar</id> + <phase>pre-integration-test</phase> + <goals> + <goal>install-file</goal> + </goals> + <configuration> + <file>${project.build.directory}/javatest.jar</file> + <groupId>javatest</groupId> + <artifactId>javatest</artifactId> + <version>5.0</version> + <packaging>jar</packaging> + </configuration> + </execution> </executions> </plugin> </plugins> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org