Skip to content

Commit f5341cc

Browse files
[MIN] Version updates. Picked from #1234
1 parent f3f7a8e commit f5341cc

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To get the project running as smooth as possible, please consider the following
88
Compiling BaseX
99
---------------
1010

11-
JDK 1.6 and JUnit is currently required to compile the complete sources
11+
JDK 1.7 and JUnit is currently required to compile the complete sources
1212
of the main project. If you are using another environment than Eclipse
1313
or don't have JUnit installed, just delete the `test` packages inside
1414
the project and rebuild the project.

basex-core/src/main/javacc/regex.jj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ options {
33
STATIC = false;
44
USER_TOKEN_MANAGER = true;
55
GRAMMAR_ENCODING = "UTF-8";
6-
JDK_VERSION = "1.6";
6+
JDK_VERSION = "1.7";
77
}
88

99
PARSER_BEGIN(RegExParser)

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@
283283
<plugins>
284284
<plugin>
285285
<artifactId>maven-assembly-plugin</artifactId>
286-
<version>2.5.3</version>
286+
<version>2.5.5</version>
287287
<inherited>true</inherited>
288288
<executions>
289289
<execution>
@@ -317,7 +317,8 @@
317317
<inherited>true</inherited>
318318
<executions>
319319
<execution>
320-
<id>javacc</id>
320+
<id>generate-all-parsers</id>
321+
<phase>generate-sources</phase>
321322
<goals>
322323
<goal>javacc</goal>
323324
</goals>

0 commit comments

Comments
 (0)