Skip to content

Commit c25525e

Browse files
Arshia MalkaniArshia Malkani
authored andcommitted
build
1 parent 36c34b2 commit c25525e

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

build.gradle

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
plugins {
2+
id "ca.coglinc.javacc" version "2.4.0"
3+
}
4+
5+
apply plugin: 'java'
6+
apply plugin: 'maven'
7+
8+
group = 'com.github.jsqlparser'
9+
version = '1.1-SNAPSHOT'
10+
11+
description = """JSQLParser library"""
12+
13+
sourceCompatibility = 1.6
14+
targetCompatibility = 1.6
15+
tasks.withType(JavaCompile) {
16+
options.encoding = 'UTF-8'
17+
}
18+
19+
20+
21+
22+
repositories {
23+
24+
maven { url "http://repo.maven.apache.org/maven2" }
25+
}
26+
dependencies {
27+
testCompile group: 'commons-io', name: 'commons-io', version:'2.4'
28+
testCompile group: 'junit', name: 'junit', version:'4.12'
29+
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version:'1.3'
30+
testCompile group: 'org.mockito', name: 'mockito-core', version:'2.7.22'
31+
}

0 commit comments

Comments
 (0)