Skip to content

Commit

Permalink
Switch to gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian.mueller committed May 22, 2020
1 parent 51f56ef commit ab9c227
Show file tree
Hide file tree
Showing 44 changed files with 504 additions and 211 deletions.
Binary file added .gradle/6.1/executionHistory/executionHistory.lock
Binary file not shown.
Binary file added .gradle/6.1/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/6.1/fileHashes/fileHashes.lock
Binary file not shown.
Empty file added .gradle/6.1/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 @@
#Fri May 22 09:57:50 CEST 2020
gradle.version=6.1
Binary file added .gradle/checksums/checksums.lock
Binary file not shown.
Empty file added .gradle/vcs-1/gc.properties
Empty file.
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.

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

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

1 change: 1 addition & 0 deletions .idea/misc.xml

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

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

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

127 changes: 0 additions & 127 deletions Hikr.org Parser.iml

This file was deleted.

12 changes: 0 additions & 12 deletions HikrBackup.launch

This file was deleted.

12 changes: 0 additions & 12 deletions README.md

This file was deleted.

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

group 'li.sebastianmueller'
version '1.0.0'

repositories {
mavenCentral()
}

dependencies {
compile 'org.jsoup:jsoup:1.13.1'
compile 'org.apache.httpcomponents:httpclient:4.5.12'
compile group: 'commons-io', name: 'commons-io', version: '2.6'

testCompile group: 'junit', name: 'junit', version: '4.12'
}

jar {
manifest {
attributes "Main-Class": 'li.sebastianmueller.hikr.HikrBackup'
}

from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
29 changes: 0 additions & 29 deletions export.xml

This file was deleted.

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-6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit ab9c227

Please sign in to comment.