Skip to content

Commit 3d113ee

Browse files
committed
Earlier version antlr
1 parent 73247fb commit 3d113ee

2 files changed

Lines changed: 20 additions & 4 deletions

File tree

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>org.antlr</groupId>
1515
<artifactId>antlr4-runtime</artifactId>
16-
<version>4.7</version>
16+
<version>4.2</version>
1717
</dependency>
1818
<dependency>
1919
<groupId>junit</groupId>
@@ -49,7 +49,7 @@
4949
<pluginExecutionFilter>
5050
<groupId>org.antlr</groupId>
5151
<artifactId>antlr4-maven-plugin</artifactId>
52-
<versionRange>[4.1,)</versionRange>
52+
<version>4.2</version>
5353
<goals>
5454
<goal>antlr4</goal>
5555
</goals>
@@ -111,12 +111,12 @@
111111
<dependency>
112112
<groupId>org.antlr</groupId>
113113
<artifactId>antlr4-maven-plugin</artifactId>
114-
<version>4.7</version>
114+
<version>4.2</version>
115115
</dependency>
116116
</dependencies>
117117
<groupId>org.antlr</groupId>
118118
<artifactId>antlr4-maven-plugin</artifactId>
119-
<version>4.7</version>
119+
<version>4.2</version>
120120
<configuration>
121121
<listener>false</listener>
122122
<visitor>true</visitor>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
*
3+
*
4+
*/
5+
package org.lemsml.exprparser.utils;
6+
7+
import java.io.File;
8+
9+
public class TemporaryNeuroML2Helper
10+
{
11+
public static String extractExpressions(File nml2File)
12+
{
13+
return "??";
14+
}
15+
16+
}

0 commit comments

Comments
 (0)