plugins { id "org.sonarqube" version "2.1-rc1" id "org.ajoberstar.github-pages" version "1.5.1" id "org.xbib.gradle.plugin.jbake" version "1.1.0" } println "Host: " + java.net.InetAddress.getLocalHost() println "Gradle: " + gradle.gradleVersion + " JVM: " + org.gradle.internal.jvm.Jvm.current() + " Groovy: " + GroovySystem.getVersion() println "Build: group: '${project.group}', name: '${project.name}', version: '${project.version}'" apply plugin: 'java' apply plugin: 'maven' apply plugin: 'signing' apply plugin: 'findbugs' apply plugin: 'pmd' apply plugin: 'checkstyle' apply plugin: "jacoco" configurations { wagon provided testCompile.extendsFrom(provided) } dependencies { testCompile 'junit:junit:4.12' testCompile 'org.xmlunit:xmlunit-matchers:2.2.1' testCompile 'com.github.stefanbirkner:system-rules:1.16.0' provided "org.xbib:bibliographic-character-sets:1.0.0" wagon 'org.apache.maven.wagon:wagon-ssh-external:2.10' } sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' tasks.withType(JavaCompile) { options.compilerArgs << "-Xlint:all" } test { classpath += configurations.provided testLogging { showStandardStreams = true exceptionFormat = 'full' } } tasks.withType(FindBugs) { ignoreFailures = true reports { xml.enabled = true html.enabled = false } } tasks.withType(Pmd) { ignoreFailures = true reports { xml.enabled = true html.enabled = true } } tasks.withType(Checkstyle) { ignoreFailures = true reports { xml.enabled = true html.enabled = true } } jacocoTestReport { reports { xml.enabled true csv.enabled false xml.destination "${buildDir}/reports/jacoco-xml" html.destination "${buildDir}/reports/jacoco-html" } } sonarqube { properties { property "sonar.projectName", "xbib MARC" property "sonar.sourceEncoding", "UTF-8" property "sonar.tests", "src/test/java" property "sonar.scm.provider", "git" property "sonar.java.coveragePlugin", "jacoco" property "sonar.junit.reportsPath", "build/test-results/test/" } } task sourcesJar(type: Jar, dependsOn: classes) { classifier 'sources' from sourceSets.main.allSource } task javadocJar(type: Jar, dependsOn: javadoc) { classifier 'javadoc' } artifacts { archives sourcesJar, javadocJar } if (project.hasProperty('signing.keyId')) { signing { sign configurations.archives } } apply from: 'gradle/ext.gradle' apply from: 'gradle/publish.gradle'