/**
* Copyright (C) 2015 Perforce Software. All rights reserved.
*
* Please see README-LICENSE.txt in top-level folder of this distribution.
*/
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
project.ext.ver = project.hasProperty('ver') ? project.ext.ver : 'ENGINEERING.BUILD'
version = project.ext.ver
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
}
dependencies {
compile 'com.perforce:p4java:2015.1.1067177'
compile 'log4j:log4j:1.2.17'
compile 'org.slf4j:slf4j-api:1.6.6'
compile 'org.slf4j:slf4j-log4j12:1.6.6'
}