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 my view, there is not much value to publishing the war to Maven Central. It’s highly unlikely anyone will use it from there.

Just for now, I am doing this initial release manually on the cloud. My plan is to add a GitHub action any one of us (committers) can execute to publish a new version of the war to the cloud. I do have to send some IT requests and set up some GitHub Actions secrets to do that. Since it’s some amount of work, I want to do this after I verify that the cloud deployment actually works as I expect. I have already done all this for Cargo Tracker. It’s doable, just work.

I hope this makes sense?
 

From: Ivar Grimstad <ivar.grimstad@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Tuesday, March 28, 2023 8:46 AM
To: reza_rahman@xxxxxxxxx <reza_rahman@xxxxxxxxx>
Cc: starter developer discussions <starter-dev@xxxxxxxxxxx>; Jeyvison Nascimento <jeynoronha@xxxxxxxxx>
Subject: Re: [starter-dev] 2.0.1 of the Archetype is staged
 
One question: Do we publish the UI to Maven Central, or just create a release on GitHub?

Ivar

On Tue, Mar 28, 2023 at 2:42 PM reza_rahman@xxxxxxxxx <reza_rahman@xxxxxxxxx> wrote:
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 20.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. 



--

Ivar Grimstad

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


Back to the top