Skip to content

Commit 9655b69

Browse files
authored
Merge pull request #3 from jamesross03/develop
1.0.1-SNAPSHOT: Build workflow and dependency updates
2 parents bc61ba9 + 9658ede commit 9655b69

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/maven.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,21 @@ name: Java CI with Maven
66
on:
77
push:
88
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
911

1012
jobs:
11-
build:
13+
build-and-test:
1214

1315
runs-on: ubuntu-latest
1416

1517
steps:
1618
- uses: actions/checkout@v2
1719

18-
- name: Set up JDK 1.11
20+
- name: Set up JDK 21
1921
uses: actions/setup-java@v1
2022
with:
21-
java-version: 1.11
23+
java-version: 21
2224

2325
- name: Build with Maven
2426
run: mvn --batch-mode --update-snapshots verify

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</parent>
2828

2929
<artifactId>population-records</artifactId>
30-
<version>1.0-SNAPSHOT</version>
30+
<version>1.0.1-SNAPSHOT</version>
3131
<packaging>jar</packaging>
3232
<name>population-records</name>
3333

@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>uk.ac.standrews.cs</groupId>
4747
<artifactId>ciesvium</artifactId>
48-
<version>1.0-SNAPSHOT</version>
48+
<version>1.1.0-SNAPSHOT</version>
4949
</dependency>
5050

5151
</dependencies>

src/main/java/uk/ac/standrews/cs/population_records/PopulationDataSet.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
import java.io.IOException;
2929
import java.io.InputStream;
30-
import java.nio.file.Path;
3130
import java.util.Arrays;
3231
import java.util.List;
3332

0 commit comments

Comments
 (0)