Skip to content

Commit

Permalink
Merge pull request #19 from NeuroML/development
Browse files Browse the repository at this point in the history
Updates for NMLv2.3
  • Loading branch information
pgleeson authored Sep 20, 2023
2 parents 99de022 + 2b8182b commit 20811d3
Show file tree
Hide file tree
Showing 5 changed files with 222 additions and 240 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '16', '17']
runs-on: [ubuntu-latest, macos-11, windows-2019]
java: [ '8', '11', '16', '17', '19']
runs-on: [ubuntu-latest, macos-latest, windows-2019]

name: Test on Java ${{ matrix.Java }} on ${{ matrix.runs-on }}
steps:
Expand Down
8 changes: 3 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.neuroml.import</groupId>
<artifactId>org.neuroml.import</artifactId>
<packaging>jar</packaging>
<version>1.8.1</version>
<version>1.9.1</version>
<name>org.neuroml.import</name>
<url>http://maven.apache.org</url>
<repositories>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>org.neuroml.export</groupId>
<artifactId>org.neuroml.export</artifactId>
<version>1.8.1</version>
<version>1.9.1</version>
</dependency>

<dependency>
Expand All @@ -43,13 +43,11 @@
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>2.17.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.17.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.biojava</groupId>
Expand All @@ -73,7 +71,7 @@
&lt;br /&gt;
&lt;br /&gt;
</top>
<bottom>Copyright NeuroML Contributors 2021</bottom>
<bottom>Copyright NeuroML Contributors 2023</bottom>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/neuroml/importer/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
public class Main
{

public static String ORG_NEUROML_IMPORT_VERSION = "1.8.1";
public static String ORG_NEUROML_IMPORT_VERSION = "1.9.1";
}
Loading

0 comments on commit 20811d3

Please sign in to comment.