Changeset 7232
- Timestamp:
- 12/15/21 20:28:02 (3 years ago)
- Location:
- FCSSimpleEndpoint/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
FCSSimpleEndpoint/trunk/pom.xml
r7115 r7232 6 6 <groupId>eu.clarin.sru.fcs</groupId> 7 7 <artifactId>fcs-simple-endpoint</artifactId> 8 <version>1. 5.0-SNAPSHOT</version>8 <version>1.6.0-SNAPSHOT</version> 9 9 <packaging>jar</packaging> 10 10 <name>A simple CLARIN FCS endpoint</name> … … 17 17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 18 18 <!-- plug-in settings --> 19 <maven.compiler.source>1. 6</maven.compiler.source>20 <maven.compiler.target>1. 6</maven.compiler.target>19 <maven.compiler.source>1.8</maven.compiler.source> 20 <maven.compiler.target>1.8</maven.compiler.target> 21 21 <!-- versions of common dependencies --> 22 <slf4j.version>1.7. 21</slf4j.version>22 <slf4j.version>1.7.32</slf4j.version> 23 23 </properties> 24 24 … … 46 46 <groupId>eu.clarin.sru.fcs</groupId> 47 47 <artifactId>fcs-ql</artifactId> 48 <version>0. 1-SNAPSHOT</version>48 <version>0.2-SNAPSHOT</version> 49 49 </dependency> 50 50 … … 89 89 <groupId>org.apache.maven.plugins</groupId> 90 90 <artifactId>maven-compiler-plugin</artifactId> 91 <version>3. 6.0</version>91 <version>3.8.1</version> 92 92 <configuration> 93 93 <source>${maven.compiler.source}</source> … … 99 99 <groupId>org.apache.maven.plugins</groupId> 100 100 <artifactId>maven-javadoc-plugin</artifactId> 101 <version> 2.10.4</version>101 <version>3.3.1</version> 102 102 <executions> 103 103 <execution> … … 113 113 <groupId>org.apache.maven.plugins</groupId> 114 114 <artifactId>maven-source-plugin</artifactId> 115 <version>3. 0.1</version>115 <version>3.2.1</version> 116 116 <executions> 117 117 <execution> -
FCSSimpleEndpoint/trunk/src/main/java/eu/clarin/sru/server/fcs/parser/QueryParser.java
r7163 r7232 28 28 import org.antlr.v4.runtime.ANTLRInputStream; 29 29 import org.antlr.v4.runtime.BaseErrorListener; 30 import org.antlr.v4.runtime.CharStream; 31 import org.antlr.v4.runtime.CharStreams; 30 32 import org.antlr.v4.runtime.CommonTokenStream; 31 33 import org.antlr.v4.runtime.ParserRuleContext; … … 138 140 final ErrorListener errorListener = new ErrorListener(query); 139 141 try { 140 ANTLRInputStream input = new ANTLRInputStream(query); 142 // ANTLRInputStream input = new ANTLRInputStream(query); 143 CharStream input = CharStreams.fromString(query); 141 144 FCSLexer lexer = new FCSLexer(input); 142 145 CommonTokenStream tokens = new CommonTokenStream(lexer);
Note: See TracChangeset
for help on using the changeset viewer.