You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by gn...@apache.org on 2023/01/28 09:30:03 UTC

[maven-mvnd] branch build-1.0.0-m2 created (now 7a17ed12)

This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a change to branch build-1.0.0-m2
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git


      at 7a17ed12 Build 1.0.0-m2

This branch includes the following new commits:

     new 7a17ed12 Build 1.0.0-m2

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-mvnd] 01/01: Build 1.0.0-m2

Posted by gn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch build-1.0.0-m2
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git

commit 7a17ed123db5ada2f45b03fcf0098449b892b910
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Sat Jan 28 10:29:38 2023 +0100

    Build 1.0.0-m2
---
 .github/workflows/release.yaml  |  4 ++--
 .mvn/settings-maven-staging.xml | 24 ++++++++++++++++++++++++
 2 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 3e0590e1..2c8eb2aa 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -26,7 +26,7 @@ on:
       - '*'
 
 env:
-  GRAALVM_VERSION: '22.3.0'
+  GRAALVM_VERSION: '22.3.1'
   JAVA_VERSION: '17'
 
 jobs:
@@ -76,7 +76,7 @@ jobs:
           fi
 
       - name: 'Build native distribution'
-        run: ./mvnw verify -Pnative -Dmrm=false -B -ntp -e -DskipTests
+        run: ./mvnw verify -Pnative -Dmrm=false -B -ntp -e -DskipTests -s .mvn/settings-maven-staging.xml
 
       - name: 'Upload artifact'
         uses: actions/upload-artifact@v2
diff --git a/.mvn/settings-maven-staging.xml b/.mvn/settings-maven-staging.xml
new file mode 100644
index 00000000..791682b2
--- /dev/null
+++ b/.mvn/settings-maven-staging.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+    <profiles>
+        <profile>
+            <id>maven-staging</id>
+            <repositories>
+                <repository>
+                    <id>maven-staging-1</id>
+                    <url>https://repository.apache.org/content/repositories/maven-1859/</url>
+                    <releases>
+                        <enabled>true</enabled>
+                    </releases>
+                    <snapshots>
+                        <enabled>false</enabled>
+                    </snapshots>
+                </repository>
+            </repositories>
+        </profile>
+    </profiles>
+    <activeProfiles>
+        <activeProfile>maven-staging</activeProfile>
+    </activeProfiles>
+</settings>
\ No newline at end of file