forked from JSQLParser/JSqlParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (27 loc) · 815 Bytes
/
build.gradle
File metadata and controls
35 lines (27 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
plugins {
id "ca.coglinc.javacc" version "2.4.0"
}
apply plugin: 'java'
apply plugin: 'maven'
group = 'com.github.jsqlparser'
version = '1.1-SNAPSHOT'
description = """JSQLParser library"""
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
}
compileJavacc {
arguments = [visitor: 'true']
}
compileJjtree {
arguments = [visitor: 'true', TRACK_TOKENS: 'true']
}
dependencies {
testCompile group: 'commons-io', name: 'commons-io', version:'2.4'
testCompile group: 'junit', name: 'junit', version:'4.12'
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version:'1.3'
testCompile group: 'org.mockito', name: 'mockito-core', version:'2.7.22'
javacc 'net.java.dev.javacc:javacc:7.0.2'
}