Skip to content

Commit 20811d3

Browse files
authored
Merge pull request #19 from NeuroML/development
Updates for NMLv2.3
2 parents 99de022 + 2b8182b commit 20811d3

File tree

5 files changed

+222
-240
lines changed

5 files changed

+222
-240
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
java: [ '8', '11', '16', '17']
20-
runs-on: [ubuntu-latest, macos-11, windows-2019]
19+
java: [ '8', '11', '16', '17', '19']
20+
runs-on: [ubuntu-latest, macos-latest, windows-2019]
2121

2222
name: Test on Java ${{ matrix.Java }} on ${{ matrix.runs-on }}
2323
steps:

pom.xml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.neuroml.import</groupId>
55
<artifactId>org.neuroml.import</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.8.1</version>
7+
<version>1.9.1</version>
88
<name>org.neuroml.import</name>
99
<url>http://maven.apache.org</url>
1010
<repositories>
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.neuroml.export</groupId>
3131
<artifactId>org.neuroml.export</artifactId>
32-
<version>1.8.1</version>
32+
<version>1.9.1</version>
3333
</dependency>
3434

3535
<dependency>
@@ -43,13 +43,11 @@
4343
<groupId>org.apache.logging.log4j</groupId>
4444
<artifactId>log4j-1.2-api</artifactId>
4545
<version>2.17.1</version>
46-
<scope>test</scope>
4746
</dependency>
4847
<dependency>
4948
<groupId>org.apache.logging.log4j</groupId>
5049
<artifactId>log4j-slf4j-impl</artifactId>
5150
<version>2.17.1</version>
52-
<scope>test</scope>
5351
</dependency>
5452
<dependency>
5553
<groupId>org.biojava</groupId>
@@ -73,7 +71,7 @@
7371
&lt;br /&gt;
7472
&lt;br /&gt;
7573
</top>
76-
<bottom>Copyright NeuroML Contributors 2021</bottom>
74+
<bottom>Copyright NeuroML Contributors 2023</bottom>
7775
</configuration>
7876
</plugin>
7977
<plugin>

src/main/java/org/neuroml/importer/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
public class Main
55
{
66

7-
public static String ORG_NEUROML_IMPORT_VERSION = "1.8.1";
7+
public static String ORG_NEUROML_IMPORT_VERSION = "1.9.1";
88
}

0 commit comments

Comments
 (0)