This is an automated email from the ASF dual-hosted git repository. andy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/jena.git
commit 0522b00c8f36af8573fc3625c996d6fc8bfdf371 Author: Andy Seaborne <[email protected]> AuthorDate: Fri Feb 6 15:20:57 2026 +0000 Test artifact for jena-cmds for rdftest --- jena-cmds/pom.xml | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/jena-cmds/pom.xml b/jena-cmds/pom.xml index cf7a50776b..0a7c7ada73 100644 --- a/jena-cmds/pom.xml +++ b/jena-cmds/pom.xml @@ -170,18 +170,38 @@ </includes> </configuration> </plugin> - + <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-sources-test</id> + <goals> + <goal>test-jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> </plugin> </plugins>
