ad15cb3382
new file: build/libs/mybatis-1.0-SNAPSHOT.war new file: build/resources/main/mybatis.properties new file: build/resources/test/readme.md new file: build/tmp/war/MANIFEST.MF renamed: src/main/java/com/mybatis/util/Base.java -> src/main/java/com/test/util/Base.java new file: src/test/java/com/test/util/BaseTest.java new file: src/test/resources/readme.md
28 lines
518 B
Groovy
28 lines
518 B
Groovy
group 'mybatis'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
apply plugin: 'groovy'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'java'
|
|
apply plugin: 'war'
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url "http://maven.petrikainulainen.net/repo"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'org.codehaus.groovy:groovy-all:2.3.11'
|
|
compile 'log4j:log4j:1.2.17'
|
|
compile 'MySQL:mysql-connector-java:6.0.2'
|
|
testCompile group: 'junit', name: 'junit', version: '4.11'
|
|
}
|