Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[starter-dev] Starter 1.0.0 staged

Hi,

The 1.0.0 version of the starter is now staged at the Jakarta Staging Nexus.

https://jakarta.oss.sonatype.org/content/groups/staging/org/eclipse/starter/jakarta-starter/1.0.0/

Please try it out!

mvn archetype:generate -DarchetypeGroupId=org.eclipse.starter -DarchetypeArtifactId=jakarta-starter -DarchetypeVersion=1.0.0 -Pstaging


You will need to have the staging repository configured on your system, e.g in a staging profile as I have in the example above. Also, make sure to delete the starter from your local repository if you have built it yourself, so you are sure you are testing the right artifact.

In that case, add the following to your settings.xml file:

   <profiles>
          <profile>
            <id>staging</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>
            <repositories>
                <repository>
                    <id>jakarta-nexus-staging</id>
                    <name>Sonatype Nexus Staging</name>
                    <url>https://jakarta.oss.sonatype.org/content/groups/staging/</url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                </repository>
            </repositories>
          </profile>
      </profiles>

I have updated the README file in the release branch with the correct groupId and version. This will be merged into master when the release is done. So there is no need to update the README file in the master branch before that.

--

Ivar Grimstad

Jakarta EE Developer Advocate | Eclipse Foundation Eclipse Foundation - Community. Code. Collaboration. 


Back to the top