Initial commit

This commit is contained in:
2021-01-07 17:30:11 +01:00
commit 664f034751
29 changed files with 1229 additions and 0 deletions

21
build.gradle Normal file
View File

@@ -0,0 +1,21 @@
plugins {
id 'java'
id "application"
}
group = 'com.droideparanoico'
version = '0.0.1-SNAPSHOT'
mainClassName = 'com.droideparanoico.consoletwitter.ConsoleTwitter'
run{
standardInput = System.in
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.mockito:mockito-core:3.6.28'
}