apply plugin: 'java' // Plugin as major conventions, overwrites status apply plugin: 'errorprone' sourceCompatibility = 1.5 targetCompatibility = 1.5 // GRADLE-2087 workaround, perform after java plugin status = project.hasProperty('preferredStatus')?project.preferredStatus:(version.contains('SNAPSHOT')?'snapshot':'release') // Indenting to align with multi-project branch task sourcesJar(type: Jar, dependsOn:classes) { from sourceSets.main.allSource classifier 'sources' extension 'jar' } task javadocJar(type: Jar, dependsOn:javadoc) { from javadoc.destinationDir classifier 'javadoc' extension 'jar' } configurations.add('sources') configurations.add('javadoc') configurations.archives { extendsFrom configurations.sources extendsFrom configurations.javadoc } // When outputing to an Ivy repo, we want to use the proper type field gradle.taskGraph.whenReady { def isNotMaven = !it.hasTask(project.uploadMavenCentral) if (isNotMaven) { def artifacts = project.configurations.sources.artifacts def sourceArtifact = artifacts.iterator().next() sourceArtifact.type = 'sources' } } artifacts { sources(sourcesJar) { // Weird Gradle quirk where type will be used for the extension, but only for sources type 'jar' } javadoc(javadocJar) { type 'javadoc' } } configurations { provided { description = 'much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive.' transitive = true visible = true } } project.sourceSets { main.compileClasspath += project.configurations.provided main.runtimeClasspath -= project.configurations.provided test.compileClasspath += project.configurations.provided test.runtimeClasspath += project.configurations.provided } apply plugin: 'github-pages' // Used to create publishGhPages task def docTasks = [:] [Javadoc,ScalaDoc,Groovydoc].each{ Class docClass -> tasks.withType(docClass).each { docTask -> docTasks[docTask.name] = docTask processGhPages.dependsOn(docTask) } } githubPages { repoUri = "git@github.com:shevek/${rootProject.githubProjectName}.git" pages { docTasks.each { shortName, docTask -> from(docTask.outputs.files) { into "docs/${shortName}" } } } } wrapper { gradleVersion = '1.10' }