Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [starter-dev] 2.0.1 of the Archetype is staged

In order to use the Jakarta Staging nexus, add the following profile to your settings.xml file.
Then execute the `archetype:generate` command with -Pstaging to activate the profile.

Ivar

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

On Tue, Mar 28, 2023 at 2:30 PM Jeyvison Nascimento <jeynoronha@xxxxxxxxx> wrote:
Thanks, Ivar! I was trying to take a look at it but I was bit lost TBH ^^

Em ter., 28 de mar. de 2023 13:28, Ivar Grimstad via starter-dev <starter-dev@xxxxxxxxxxx> escreveu:
Hi,

I just staged 2.0.1: 

Please try it out and test it thoroughly before we promote it to Maven Central.

Ivar

--

Ivar Grimstad

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

_______________________________________________
starter-dev mailing list
starter-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://dev.eclipse.org/mailman/listinfo/starter-dev


--

Ivar Grimstad

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


Back to the top