Sollder11 commented on code in PR #1063: URL: https://github.com/apache/tomee/pull/1063#discussion_r1317614809
########## tck/jax-rs/pom.xml: ########## @@ -0,0 +1,243 @@ +<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.tomee</groupId> + <artifactId>tck</artifactId> + <version>10.0.0-SNAPSHOT</version> + </parent> + + <artifactId>jax-rs-tck</artifactId> + <name>TomEE :: TCK :: Jakarta-Restfull-WS-TCK</name> + + <properties> + <junit.jupiter.version>5.9.3</junit.jupiter.version> + <tomee-version>10.0.0-SNAPSHOT</tomee-version> + </properties> + + <repositories> + <!--TODO: We use the staging repository of jakarta as the tck dependencies are not yet pushed to central. Remove this asap.--> + <repository> + <id>my-repo1</id> + <name>TCK-Staging-Repo</name> + <url>https://jakarta.oss.sonatype.org/content/groups/staging</url> + </repository> + + </repositories> + + <profiles> + <profile> + <id>record-signature</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.netbeans.tools</groupId> + <artifactId>sigtest-maven-plugin</artifactId> + <version>1.4</version> + <executions> + <execution> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <FileName>${project.build.directory}/jakarta.ws.rs.sig_${project.parent.version}</FileName> + <packages> + jakarta.ws.rs,jakarta.ws.rs.client,jakarta.ws.rs.core,jakarta.ws.rs.container,jakarta.ws.rs.ext,jakarta.ws.rs.sse + </packages> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>tck-build</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3.2</version> + </plugin> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>${surefire.version}</version> + <configuration> + <reuseForks>false</reuseForks> + <forkCount>1</forkCount> + <useFile>false</useFile> + <disableXmlReport>false</disableXmlReport> + + <includes> + <include>**/*.java</include> + </includes> + + <dependenciesToScan> + <dependency>jakarta.ws.rs:jakarta-restful-ws-tck</dependency> + </dependenciesToScan> + + <systemPropertyVariables> Review Comment: I added it. We went from: Tests run: 2796, Failures: 10, Errors: 19, Skipped: 128 to: [ERROR] Tests run: 2796, Failures: 9, Errors: 18, Skipped: 128 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@tomee.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org