Skip to content

Commit

Permalink
moved to gradle, built out .class file
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedsaheed committed Jun 25, 2022
1 parent 77e5894 commit 32a0c9c
Show file tree
Hide file tree
Showing 44 changed files with 417 additions and 106 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file added .gradle/.DS_Store
Binary file not shown.
Binary file added .gradle/7.4/.DS_Store
Binary file not shown.
Binary file added .gradle/7.4/checksums/checksums.lock
Binary file not shown.
Binary file added .gradle/7.4/checksums/md5-checksums.bin
Binary file not shown.
Binary file added .gradle/7.4/checksums/sha1-checksums.bin
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file added .gradle/7.4/executionHistory/executionHistory.lock
Binary file not shown.
Binary file added .gradle/7.4/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/7.4/fileHashes/fileHashes.bin
Binary file not shown.
Binary file added .gradle/7.4/fileHashes/fileHashes.lock
Binary file not shown.
Binary file added .gradle/7.4/fileHashes/resourceHashesCache.bin
Binary file not shown.
Empty file added .gradle/7.4/gc.properties
Empty file.
Binary file added .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 2 additions & 0 deletions .gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Sat Jun 25 00:49:24 IST 2022
gradle.version=7.4
Binary file added .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file added .gradle/file-system.probe
Binary file not shown.
Empty file added .gradle/vcs-1/gc.properties
Empty file.
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 8 additions & 17 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
plugins {
id 'java'
}

group 'org.example'
version '1.0-SNAPSHOT'

repositories {
mavenCentral()
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation 'info.picocli:picocli:4.6.1'
annotationProcessor 'info.picocli:picocli-codegen:4.6.1'
}

compileJava {
options.compilerArgs += ["-Aproject=${project.group}/${project.name}"]
}

test {
useJUnitPlatform()
}
Binary file added build/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
41 changes: 25 additions & 16 deletions cmdWithJava/.idea/workspace.xml → cmd/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 32a0c9c

Please sign in to comment.