Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
build: specifies exact version for maven-central compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
c-a-m committed Feb 26, 2015
1 parent c5e8c75 commit f345d5d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion applet/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

dependencies {
compile project(':core')
testCompile group: 'junit', name: 'junit', version: '4+'
testCompile group: 'junit', name: 'junit', version: '4.12'
}

jar {
Expand Down
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ subprojects {
testCompile 'junit:junit:4.11'
}

// tasks.withType(Compile) {
// options.encoding = 'UTF-8'
// }

jar {
manifest.attributes provider: 'gradle'
}
Expand Down
4 changes: 3 additions & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ mainClassName = "org.owasp.passfault.TextAnalysis"
compileJava.options.encoding = 'UTF-8'
javadoc.options.encoding = 'UTF-8'
sourceCompatibility = 1.7
applicationName = rootProject.name

configurations{
wordlists
}

dependencies {
testCompile group: 'junit', name: 'junit', version: '4+'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile project(':wordlists')
}

Expand All @@ -26,4 +27,5 @@ artifacts {
archives jar
archives javadocJar
archives sourcesJar
archives distZip
}

0 comments on commit f345d5d

Please sign in to comment.