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 367f69d709f42e9ed1899c079802ce938f4716b5 Author: Andy Seaborne <[email protected]> AuthorDate: Sat Jan 3 19:50:16 2026 +0000 GH-3682: Remove the jena-extras maven module --- jena-extras/jena-commonsrdf/pom.xml | 2 +- jena-extras/jena-querybuilder/pom.xml | 2 +- jena-extras/jena-serviceenhancer/pom.xml | 2 +- jena-extras/pom.xml | 38 -------------------------------- pom.xml | 10 +++++---- 5 files changed, 9 insertions(+), 45 deletions(-) diff --git a/jena-extras/jena-commonsrdf/pom.xml b/jena-extras/jena-commonsrdf/pom.xml index 58998aa1c2..40819958a9 100644 --- a/jena-extras/jena-commonsrdf/pom.xml +++ b/jena-extras/jena-commonsrdf/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.jena</groupId> - <artifactId>jena-extras</artifactId> + <artifactId>jena</artifactId> <version>6.0.0-SNAPSHOT</version> </parent> diff --git a/jena-extras/jena-querybuilder/pom.xml b/jena-extras/jena-querybuilder/pom.xml index dda1cc395d..772973466b 100644 --- a/jena-extras/jena-querybuilder/pom.xml +++ b/jena-extras/jena-querybuilder/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.jena</groupId> - <artifactId>jena-extras</artifactId> + <artifactId>jena</artifactId> <version>6.0.0-SNAPSHOT</version> </parent> diff --git a/jena-extras/jena-serviceenhancer/pom.xml b/jena-extras/jena-serviceenhancer/pom.xml index fa77a16cb2..fde398abbc 100644 --- a/jena-extras/jena-serviceenhancer/pom.xml +++ b/jena-extras/jena-serviceenhancer/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.jena</groupId> - <artifactId>jena-extras</artifactId> + <artifactId>jena</artifactId> <version>6.0.0-SNAPSHOT</version> </parent> diff --git a/jena-extras/pom.xml b/jena-extras/pom.xml deleted file mode 100644 index 75e3354751..0000000000 --- a/jena-extras/pom.xml +++ /dev/null @@ -1,38 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<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> - <artifactId>jena-extras</artifactId> - <version>6.0.0-SNAPSHOT</version> - <packaging>pom</packaging> - <name>Apache Jena - Extras</name> - - <parent> - <groupId>org.apache.jena</groupId> - <artifactId>jena</artifactId> - <version>6.0.0-SNAPSHOT</version> - </parent> - - <modules> - <module>jena-querybuilder</module> - <module>jena-commonsrdf</module> - <module>jena-serviceenhancer</module> - </modules> - -</project> diff --git a/pom.xml b/pom.xml index 712c3d9bd6..93e88ffa18 100644 --- a/pom.xml +++ b/pom.xml @@ -244,8 +244,8 @@ <profile> <!-- - This is the complete profile, it builds everything including slow - building modules and the distribution packages. + This is the complete profile, it builds everything including + any building modules, javadoc and the distribution packages. --> <id>complete</id> <activation> @@ -297,8 +297,10 @@ <!-- Binary distribution --> <module>apache-jena</module> - <!-- Other --> - <module>jena-extras</module> + <module>jena-extras/jena-commonsrdf</module> + <module>jena-extras/jena-querybuilder</module> + <module>jena-extras/jena-serviceenhancer</module> + <module>jena-examples</module> <module>jena-bom</module>
