Skip to content

Commit f84ca20

Browse files
committed
gradle
1 parent bafa44c commit f84ca20

File tree

7 files changed

+288
-0
lines changed

7 files changed

+288
-0
lines changed

‎.gitattributes‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
*.bat text eol=crlf
3+
*.properties text eol=crlf
4+

‎README.md‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,10 @@ Base on previous work by [Jeffrey Thompson](http://www.jeffreythompson.org)
1414
* Add __theme.file=user:darkduino.zip__ in preferences.txt (look at the preferences dialog box for the exact location)
1515

1616
Released under [Creative Commons BY-NC-SA license](http://creativecommons.org/licenses/by-nc-sa/3.0/) -
17+
18+
### History
19+
20+
1.0.2 Customize the error/warning links in the console (1.9.0-LM only)
21+
Gradle
22+
1.0.1 Change tab color
23+
1.0.0 Initial version

‎build.gradle‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
plugins {
2+
id 'base'
3+
}
4+
5+
// local gradlew
6+
task wrapper(type: Wrapper) {
7+
gradleVersion = '2.14'
8+
}
9+
10+
11+
task dist(type: Zip) {
12+
archiveName = "darkduino.zip"
13+
destinationDir = file(".")
14+
from "darkduino"
15+
include "**/*.*"
16+
}

‎gradle/wrapper/gradle-wrapper.jar‎

49.8 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#Sun Jul 03 10:44:01 EDT 2016
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-bin.zip
7+

‎gradlew‎

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

‎gradlew.bat‎

Lines changed: 90 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)