sonar { properties { property 'sonar.projectName', "${projectTitle} :: Plugin API Implementation" } } dependencies { // please keep the list grouped by configuration and ordered by name api 'commons-codec:commons-codec' api 'commons-io:commons-io' api 'org.apache.commons:commons-lang3' api 'org.apache.commons:commons-csv' api 'org.sonarsource.api.plugin:sonar-plugin-api' compileOnlyApi 'com.google.code.findbugs:jsr305' compileOnlyApi 'junit:junit' testCompileOnly 'com.google.code.findbugs:jsr305' testImplementation 'com.google.guava:guava' testImplementation 'com.tngtech.java:junit-dataprovider' testImplementation 'junit:junit' testImplementation 'org.junit.jupiter:junit-jupiter-api' testImplementation 'org.assertj:assertj-core' testImplementation 'org.mockito:mockito-core' testImplementation 'org.mockito:mockito-junit-jupiter' testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' testRuntimeOnly 'org.junit.vintage:junit-vintage-engine' } import org.apache.tools.ant.filters.ReplaceTokens processResources { filter ReplaceTokens, tokens: [ 'project.version': project.version, 'versionEOL': project.properties["versionEOL"] ] } artifactoryPublish.skip = false publishing { publications { mavenJava(MavenPublication) { from components.java if (release) { artifact sourcesJar artifact javadocJar } } } } test { // Enabling the JUnit Platform (see https://github.com/junit-team/junit5-samples/tree/master/junit5-migration-gradle) useJUnitPlatform() }