Advertisement
shchuko

GradleConfig

Feb 25th, 2020
485
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. plugins {
  2.     id 'java'
  3.     id 'application'
  4. }
  5.  
  6. application {
  7.     mainClassName = 'Main'
  8. }
  9.  
  10. group 'shchuko.md5cligen'
  11. version '0.1'
  12.  
  13. sourceCompatibility = 10
  14.  
  15. repositories {
  16.     mavenCentral()
  17. }
  18.  
  19. if (rootProject == project) {
  20.     wrapper {
  21.         jarFile = "${project.projectDir}/gradle/wrapper/gradle-wrapper.jar"
  22.         gradleVersion = "6.1.1"
  23.     }
  24. }
  25.  
  26. dependencies {
  27.     testCompile group: 'junit', name: 'junit', version: '4.12'
  28.     compile fileTree(dir: 'MD5Generator')
  29.     compile project(':MD5Generator')
  30. }
  31.  
  32. <=========================>
  33.  
  34. rootProject.name = 'MD5CliGen'
  35. include 'MD5Generator'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement