Skip to content

Commit f8bd3e4

Browse files
authored
Use bonej-plus-0.0.9 (#381)
* Use pom-scijava 42.0.0 * Tracking bonej-plus-0.0.9-SNAPSHOT * Use bonej-plus-0.0.9
1 parent ec6183d commit f8bd3e4

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

.github/workflows/build-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Set up Java
17-
uses: actions/setup-java@v3
17+
uses: actions/setup-java@v4
1818
with:
1919
java-version: '8'
2020
distribution: 'zulu'

.github/workflows/build-pr.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,23 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Set up Java
15-
uses: actions/setup-java@v3
15+
uses: actions/setup-java@v4
1616
with:
1717
java-version: '8'
1818
distribution: 'zulu'
1919

20+
# Needed if the cache is out of whack and needs to be totally refreshed
21+
# - name: Clear Maven cache
22+
# run: rm -rf ~/.m2/repository/*
23+
2024
- name: Cache Maven packages
2125
uses: actions/cache@v3
2226
with:
2327
path: ~/.m2/repository
2428
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
25-
restore-keys: ${{ runner.os }}-m2
29+
restore-keys: ${{ runner.os }}-m2
2630

2731
- name: Set up Maven settings
2832
uses: s4u/maven-settings-action@v2
@@ -32,6 +36,10 @@ jobs:
3236

3337
- name: Set up CI environment
3438
run: .github/setup.sh
39+
40+
# Needed if there's some stale artefacts or config blocking the build'
41+
# - name: Build with Maven
42+
# run: mvn clean install -U
3543

3644
- name: Execute the build
3745
run: .github/build.sh

Modern/wrapperPlugins/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
<dependency>
128128
<groupId>org.bonej</groupId>
129129
<artifactId>bonej-plus</artifactId>
130-
<version>0.0.8</version>
130+
<version>0.0.9</version>
131131
</dependency>
132132

133133
<!-- ImageJ dependencies -->

pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.scijava</groupId>
77
<artifactId>pom-scijava</artifactId>
8-
<version>41.0.0</version>
8+
<version>42.0.0</version>
99
<relativePath />
1010
</parent>
1111

@@ -129,6 +129,8 @@
129129
<repository>
130130
<id>github</id>
131131
<url>https://maven.pkg.github.com/bonej-org/bonej-plus</url>
132+
<releases><enabled>false</enabled></releases>
133+
<snapshots><enabled>true</enabled></snapshots>
132134
</repository>
133135
</repositories>
134136
</project>

0 commit comments

Comments
 (0)