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

Note that I am a 100% sure we won’t be able to do this for the cloud deployment since we are limited to embedded Maven (I have already experimented with this). Unfortunately we really do need a Maven Central release. I hope this one does the trick and we can finally have a working cloud deployment.
 

From: starter-dev <starter-dev-bounces@xxxxxxxxxxx> on behalf of Ivar Grimstad via starter-dev <starter-dev@xxxxxxxxxxx>
Sent: Tuesday, March 28, 2023 8:35 AM
To: Jeyvison Nascimento <jeynoronha@xxxxxxxxx>
Cc: Ivar Grimstad <ivar.grimstad@xxxxxxxxxxxxxxxxxxxxxx>; starter developer discussions <starter-dev@xxxxxxxxxxx>
Subject: 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