This repository has been archived on 2020-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
mybatis/build.gradle

26 lines
419 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 'log4j:log4j:1.2.17'
testCompile group: 'junit', name: 'junit', version: '4.11'
}