Skip to content

Commit e52b8b5

Browse files
committed
Convert to gradle project (phr00t#1)
* Convert to gradle project * Update gradle wrapper to 4.8.1
1 parent ad7ff80 commit e52b8b5

File tree

156 files changed

+1987
-29694
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+1987
-29694
lines changed

.gitignore

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
2+
# Created by https://www.gitignore.io/api/java,gradle,intellij+all
3+
4+
### Intellij+all ###
5+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
6+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7+
8+
# User-specific stuff
9+
.idea/**/workspace.xml
10+
.idea/**/tasks.xml
11+
.idea/**/usage.statistics.xml
12+
.idea/**/dictionaries
13+
.idea/**/shelf
14+
15+
# Sensitive or high-churn files
16+
.idea/**/dataSources/
17+
.idea/**/dataSources.ids
18+
.idea/**/dataSources.local.xml
19+
.idea/**/sqlDataSources.xml
20+
.idea/**/dynamic.xml
21+
.idea/**/uiDesigner.xml
22+
.idea/**/dbnavigator.xml
23+
24+
# Gradle
25+
.idea/**/gradle.xml
26+
.idea/**/libraries
27+
28+
# CMake
29+
cmake-build-*/
30+
31+
# Mongo Explorer plugin
32+
.idea/**/mongoSettings.xml
33+
34+
# File-based project format
35+
*.iws
36+
37+
# IntelliJ
38+
out/
39+
40+
# mpeltonen/sbt-idea plugin
41+
.idea_modules/
42+
43+
# JIRA plugin
44+
atlassian-ide-plugin.xml
45+
46+
# Cursive Clojure plugin
47+
.idea/replstate.xml
48+
49+
# Crashlytics plugin (for Android Studio and IntelliJ)
50+
com_crashlytics_export_strings.xml
51+
crashlytics.properties
52+
crashlytics-build.properties
53+
fabric.properties
54+
55+
# Editor-based Rest Client
56+
.idea/httpRequests
57+
58+
### Intellij+all Patch ###
59+
# Ignores the whole .idea folder and all .iml files
60+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
61+
62+
.idea/
63+
64+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
65+
66+
*.iml
67+
modules.xml
68+
.idea/misc.xml
69+
*.ipr
70+
71+
### Java ###
72+
# Compiled class file
73+
*.class
74+
75+
# Log file
76+
*.log
77+
78+
# BlueJ files
79+
*.ctxt
80+
81+
# Mobile Tools for Java (J2ME)
82+
.mtj.tmp/
83+
84+
# Package Files #
85+
*.jar
86+
*.war
87+
*.nar
88+
*.ear
89+
*.zip
90+
*.tar.gz
91+
*.rar
92+
93+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
94+
hs_err_pid*
95+
96+
### Gradle ###
97+
.gradle
98+
/build/
99+
100+
# Ignore Gradle GUI config
101+
gradle-app.setting
102+
103+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
104+
!gradle-wrapper.jar
105+
106+
# Cache of project
107+
.gradletasknamecache
108+
109+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
110+
# gradle/wrapper/gradle-wrapper.properties
111+
112+
113+
# End of https://www.gitignore.io/api/java,gradle,intellij+all

build.gradle

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
plugins {
2+
id 'java'
3+
id 'com.github.johnrengelman.shadow' version '2.0.4'
4+
}
5+
6+
group 'com.phr00t'
7+
version '1.7-SNAPSHOT'
8+
9+
sourceCompatibility = 1.8
10+
11+
repositories {
12+
mavenCentral()
13+
maven { url "https://clojars.org/repo" }
14+
}
15+
16+
dependencies {
17+
implementation group: 'ddf.minim', name: 'ddf.minim', version: '2.2.0'
18+
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
19+
implementation group: 'net.sf.trove4j', name: 'trove4j', version: '3.0.3'
20+
implementation group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
21+
}
22+
23+
jar {
24+
manifest {
25+
attributes "Main-Class": "com.phr00t.autostepper.AutoStepper"
26+
}
27+
28+
from {
29+
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
30+
}
31+
}

gradle/wrapper/gradle-wrapper.jar

53.1 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)