Skip to content

Commit 3e022ce

Browse files
committed
Include commit timestamp in build qualifier.
1 parent 18edc33 commit 3e022ce

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/maven.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
maven-version: 3.9.6
3434
- name: Build with Maven
35-
run: mvn -B package --file pom.xml
35+
run: mvn -B package --file pom.xml -DunofficialSuffix=
3636

3737
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
3838
# - name: Update dependency graph

pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@
2525
<!--
2626
<tycho-snapshots>https://repo.eclipse.org/content/repositories/tycho-snapshots/</tycho-snapshots>
2727
-->
28-
<qualifier>Alpha</qualifier>
29-
<buildDate>yyyyMMddHHmm</buildDate>
30-
<tycho.buildqualifier.format>'${qualifier}'-${buildDate}</tycho.buildqualifier.format>
28+
<unofficialSuffix>-UNOFFICIAL</unofficialSuffix>
3129
</properties>
3230

3331
<pluginRepositories>
@@ -56,6 +54,7 @@
5654
</pluginRepositories>
5755

5856
<build>
57+
<finalName>foobar</finalName>
5958
<pluginManagement>
6059
<plugins>
6160
<plugin>
@@ -264,12 +263,12 @@
264263
<repository>
265264
<id>eclipse</id>
266265
<layout>p2</layout>
267-
<url>http://download.eclipse.org/releases/2024-12</url>
266+
<url>http://download.eclipse.org/releases/2024-06</url>
268267
</repository>
269268
<repository>
270269
<id>cbi-targetplatform-dsl-mirror</id>
271270
<layout>p2</layout>
272-
<url>https://download.eclipse.org/cbi/updates/tpd/release/3.0.0</url>
271+
<url>https://download.eclipse.org/cbi/updates/tpd/release/</url>
273272
</repository>
274273
</repositories>
275274
<dependencies>
@@ -288,7 +287,7 @@
288287
<applicationArg>target-platforms/default.tpd</applicationArg>
289288
</applicationArgs>
290289
</configuration>
291-
</plugin>
290+
</plugin>
292291
</plugins>
293292
</build>
294293

@@ -330,6 +329,7 @@
330329
<timestampProvider>jgit</timestampProvider>
331330
<jgit.ignore>pom.xml .gitignore .launchers/**</jgit.ignore>
332331
<jgit.dirtyWorkingTree>warning</jgit.dirtyWorkingTree>
332+
<format>yyyyMMddHHmm'${unofficialSuffix}'</format>
333333
</configuration>
334334
</plugin>
335335
</plugins>

0 commit comments

Comments
 (0)