Skip to content

Commit 0bdd4bc

Browse files
[TMP] Test signing on PR builds and lock snapshots
To lock run: mvn versions:lock-snapshots
1 parent 5d52ece commit 0bdd4bc

2 files changed

Lines changed: 20 additions & 14 deletions

File tree

.github/workflows/maven-build-master-and-publish-snapshot.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Maven build and publish Master Snapshot
77

88
on:
99
push:
10-
branches: [ master ]
10+
branches: [ master, enable-gpg-signing ]
1111

1212
env:
1313
MAVEN_ARGS: --batch-mode --no-transfer-progress
@@ -32,3 +32,8 @@ jobs:
3232
MAVEN_USERNAME: ${{ secrets.CENTRAL_PORTAL_TOKEN_USERNAME }}
3333
MAVEN_PASSWORD: ${{ secrets.CENTRAL_PORTAL_TOKEN_PASSWORD }}
3434
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
35+
- uses: actions/upload-artifact@v4
36+
with:
37+
name: Target Content
38+
path: '**/target/*'
39+

symja_android_library/pom.xml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@
234234
<dependency>
235235
<groupId>org.apfloat</groupId>
236236
<artifactId>apfloat</artifactId>
237-
<version>1.16.0-SNAPSHOT</version>
237+
<version>1.16.0-20260102.185239-2</version>
238238
</dependency>
239239
<dependency>
240240
<groupId>org.codehaus.janino</groupId>
@@ -252,44 +252,44 @@
252252
<version>1.1.3</version>
253253
</dependency>
254254
<dependency>
255-
<groupId>org.hipparchus</groupId>
256-
<artifactId>hipparchus-core</artifactId>
257-
<version>4.1-SNAPSHOT</version>
258-
</dependency>
255+
<groupId>org.hipparchus</groupId>
256+
<artifactId>hipparchus-core</artifactId>
257+
<version>4.1-20260214.214523-41</version>
258+
</dependency>
259259
<dependency>
260260
<groupId>org.hipparchus</groupId>
261261
<artifactId>hipparchus-clustering</artifactId>
262-
<version>4.1-SNAPSHOT</version>
262+
<version>4.1-20260214.214523-37</version>
263263
</dependency>
264264
<dependency>
265265
<groupId>org.hipparchus</groupId>
266266
<artifactId>hipparchus-fft</artifactId>
267-
<version>4.1-SNAPSHOT</version>
267+
<version>4.1-20260214.214523-37</version>
268268
</dependency>
269269
<dependency>
270270
<groupId>org.hipparchus</groupId>
271271
<artifactId>hipparchus-fitting</artifactId>
272-
<version>4.1-SNAPSHOT</version>
272+
<version>4.1-20260214.214523-37</version>
273273
</dependency>
274274
<dependency>
275275
<groupId>org.hipparchus</groupId>
276276
<artifactId>hipparchus-geometry</artifactId>
277-
<version>4.1-SNAPSHOT</version>
277+
<version>4.1-20260214.214523-41</version>
278278
</dependency>
279279
<dependency>
280280
<groupId>org.hipparchus</groupId>
281281
<artifactId>hipparchus-ode</artifactId>
282-
<version>4.1-SNAPSHOT</version>
282+
<version>4.1-20260214.214523-41</version>
283283
</dependency>
284284
<dependency>
285285
<groupId>org.hipparchus</groupId>
286286
<artifactId>hipparchus-optim</artifactId>
287-
<version>4.1-SNAPSHOT</version>
287+
<version>4.1-20260214.214523-38</version>
288288
</dependency>
289289
<dependency>
290290
<groupId>org.jgrapht</groupId>
291291
<artifactId>jgrapht-io</artifactId>
292-
<version>1.5.3-SNAPSHOT</version>
292+
<version>1.5.3-20260210.172208-13</version>
293293
</dependency>
294294
<dependency>
295295
<groupId>org.jsoup</groupId>
@@ -515,7 +515,8 @@
515515
<autoVersionSubmodules>true</autoVersionSubmodules>
516516
<useReleaseProfile>false</useReleaseProfile>
517517
<releaseProfiles>publish-to-maven-central,exact-target-jdk</releaseProfiles>
518-
<arguments>-Drelease.build=true</arguments>
518+
<arguments>-Drelease.build=true -DskipTests</arguments>
519+
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
519520
</configuration>
520521
</plugin>
521522
<plugin>

0 commit comments

Comments
 (0)