// This project actually depends upon the p4oauth project having been completely // built and assembled. task wrapper(type: Wrapper) { gradleVersion = '1.11' } // Any plugin definitions should be set up and cached via artifactory. buildscript { repositories { jcenter() // This is a local cache maven { url 'http://artifactory.bnr.perforce.com/artifactory/repos-p4oauth' } mavenLocal() } dependencies { classpath('commons-lang:commons-lang:2.6') classpath("com.perforce.workshop.tjuricek:perforce-gradle-plugin:0.1.2") classpath("com.perforce.workshop.tjuricek:initializer-gradle-plugin:0.1.1") } } apply plugin: 'java' apply plugin: 'perforce' apply plugin: 'perforce-initializer' repositories { maven { url 'http://artifactory.bnr.perforce.com/artifactory/repos-p4oauth' } } sourceCompatibility = 1.8