Wc tool by GauravGuptaDeveloper · Pull Request #1 · GauravGuptaDeveloper/Coding-Challenges · GitHub
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 110 additions & 0 deletions wc-tool/.gitignore
27 changes: 27 additions & 0 deletions wc-tool/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
plugins {
id 'java'
}

group 'com.learning'
version '1.0'

repositories {
mavenCentral()
}

jar {
manifest {
attributes 'Main-Class': 'com.learning.Main'
}
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'commons-io:commons-io:2.11.0'
}

test {
useJUnitPlatform()
}
Binary file added wc-tool/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions wc-tool/gradle/wrapper/gradle-wrapper.properties
240 changes: 240 additions & 0 deletions wc-tool/gradlew

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

Loading