Skip to content

Commit cc7521b

Browse files
Arshia MalkaniArshia Malkani
authored andcommitted
gradle built
1 parent c25525e commit cc7521b

2 files changed

Lines changed: 12 additions & 8 deletions

File tree

build.gradle

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,26 @@ version = '1.1-SNAPSHOT'
1010

1111
description = """JSQLParser library"""
1212

13-
sourceCompatibility = 1.6
14-
targetCompatibility = 1.6
1513
tasks.withType(JavaCompile) {
16-
options.encoding = 'UTF-8'
14+
options.encoding = 'UTF-8'
1715
}
1816

17+
repositories {
18+
maven { url "http://repo.maven.apache.org/maven2" }
19+
}
1920

21+
compileJavacc {
22+
arguments = [visitor: 'true']
23+
}
2024

21-
22-
repositories {
23-
24-
maven { url "http://repo.maven.apache.org/maven2" }
25+
compileJjtree {
26+
arguments = [visitor: 'true', TRACK_TOKENS: 'true']
2527
}
28+
2629
dependencies {
2730
testCompile group: 'commons-io', name: 'commons-io', version:'2.4'
2831
testCompile group: 'junit', name: 'junit', version:'4.12'
2932
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version:'1.3'
3033
testCompile group: 'org.mockito', name: 'mockito-core', version:'2.7.22'
31-
}
34+
javacc 'net.java.dev.javacc:javacc:7.0.2'
35+
}

target/jsqlparser-1.1-SNAPSHOT.jar

-84 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)