Details
-
Task
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.2-incubating
-
None
Description
The org.apache.sis group on the Maven central repository contains 3 artifacts from the 0.2-incubating release which have been renamed in next releases:
- sis-parent, renamed parent in the same group.
- sis-core, replaced by sis-referencing in the org.apache.sis.core group.
- sis-webapp, moved to the org.apache.sis.application group.
We should release a 0.3 version of above artifacts with only a <relocation> section, as described in the Maven guide to relocation. Example:
<project> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.sis</groupId> <artifactId>sis-parent</artifactId> <version>0.3</version> <distributionManagement> <relocation> <artifactId>parent</artifactId> <message>Artifact "sis-parent" has been renamed "parent".</message> </relocation> </distributionManagement> </project>