Files
i2p.i2p/build.gradle

20 lines
292 B
Groovy
Raw Normal View History

subprojects {
apply plugin: 'java'
2014-06-25 02:50:24 +00:00
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.+'
}
sourceCompatibility = 1.6
jar {
manifest {
attributes 'Implementation-Version': '0.9.23-18'
}
}
}