build.gradle 630 B

123456789101112131415161718192021222324252627282930313233343536
  1. plugins {
  2. id 'java'
  3. }
  4. group 'com.anas.javautils.jls'
  5. version '0.3.7'
  6. repositories {
  7. mavenCentral()
  8. maven{
  9. url 'https://jitpack.io'
  10. }
  11. }
  12. dependencies {
  13. implementation 'commons-cli:commons-cli:1.5.0'
  14. implementation 'com.github.Anas-Elgarhy:JColorfulConsole:1.0.3'
  15. testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
  16. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
  17. }
  18. test {
  19. useJUnitPlatform()
  20. }
  21. jar {
  22. manifest {
  23. attributes(
  24. 'Mainfest-Version': '1.0',
  25. 'Main-Class': 'com.anas.javautils.jls.Main'
  26. )
  27. }
  28. }