Skip to content

Commit ceca368

Browse files
committed
Update gradle build
1 parent 6b28053 commit ceca368

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

build.gradle

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@ apply plugin: 'java'
22
apply plugin: 'maven'
33
apply plugin: 'eclipse'
44
apply plugin: 'idea'
5+
apply plugin: 'application'
56

67
group = 'org.monitor'
7-
version = '1.0-SNAPSHOT'
8+
version = '1.0.0'
9+
10+
sourceCompatibility = 1.7
11+
targetCompatibility = 1.7
12+
13+
mainClassName = 'control.MonitorBrightnessTool'
814

915
repositories {
1016
mavenCentral()
@@ -16,6 +22,7 @@ dependencies {
1622
compile group: 'net.java.dev.jna', name: 'jna', version: '4.1.0'
1723
compile group: 'net.java.dev.jna', name: 'jna-platform', version: '4.1.0'
1824
compile group: 'com.github.sarxos', name: 'webcam-capture', version: '0.3.9'
25+
compile group: 'com.google.code.gson', name: 'gson', version: '2.3'
1926

2027
runtime group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.2'
2128

@@ -24,7 +31,7 @@ dependencies {
2431
}
2532

2633
task wrapper(type: Wrapper) {
27-
gradleVersion = '1.12'
34+
gradleVersion = '2.1'
2835
}
2936

3037

gradle/wrapper/gradle-wrapper.jar

-89 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Apr 30 11:36:48 CEST 2014
1+
#Sun Sep 28 10:40:40 CEST 2014
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.1-bin.zip

0 commit comments

Comments
 (0)