Skip to content

Commit 2133c3d

Browse files
committed
Update dependencies, add gitignore, update gradle wrapper.
1 parent 9b22d41 commit 2133c3d

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea
2+
.gradle
3+
build

build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ apply plugin: 'java'
22
apply plugin: 'jacoco'
33
apply plugin: 'com.github.kt3k.coveralls'
44
apply plugin: 'eclipse'
5-
apply plugin: 'sonar-runner'
65

76
group = 'com.chip8java'
87
version = '1.0'
@@ -17,10 +16,10 @@ repositories {
1716
}
1817

1918
dependencies {
20-
compile group: 'commons-cli', name: 'commons-cli', version: '1.3.1'
21-
compile group: 'commons-io', name: 'commons-io', version: '2.4'
22-
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
23-
testCompile group: 'junit', name: 'junit', version: '4.12'
19+
compile 'commons-cli:commons-cli:1.4'
20+
compile 'commons-io:commons-io:2.5'
21+
testCompile 'org.mockito:mockito-all:1.10.19'
22+
testCompile 'junit:junit:4.12'
2423
}
2524

2625
buildscript {
@@ -72,5 +71,5 @@ jar {
7271
}
7372

7473
task wrapper(type: Wrapper) {
75-
gradleVersion = '2.2.1'
74+
gradleVersion = '3.5'
7675
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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-2.2.1-all.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-3.5-all.zip

0 commit comments

Comments
 (0)