apply plugin: 'java' | |
apply plugin: 'eclipse' | |
java.sourceCompatibility = 1.7 | |
version = '1.0' | |
jar { | |
manifest { | |
attributes 'Implementation-Title': 'Gradle Quickstart', | |
'Implementation-Version': version | |
} | |
} | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
testImplementation group: 'junit', name: 'junit', version: '4.12' | |
} | |
test { | |
systemProperties 'property': 'value' | |
} |