Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plugins {
- id 'java'
- id 'application'
- }
- application {
- mainClassName = 'Main'
- }
- group 'shchuko.md5cligen'
- version '0.1'
- sourceCompatibility = 10
- repositories {
- mavenCentral()
- }
- if (rootProject == project) {
- wrapper {
- jarFile = "${project.projectDir}/gradle/wrapper/gradle-wrapper.jar"
- gradleVersion = "6.1.1"
- }
- }
- dependencies {
- testCompile group: 'junit', name: 'junit', version: '4.12'
- compile fileTree(dir: 'MD5Generator')
- compile project(':MD5Generator')
- }
- <=========================>
- rootProject.name = 'MD5CliGen'
- include 'MD5Generator'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement