Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

Commit

Permalink
Changing to Java 1.8. Includes changes to keep cobertura functional
Browse files Browse the repository at this point in the history
  • Loading branch information
pimotte committed Dec 13, 2015
1 parent 6baa859 commit 98c9bc8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Expand Up @@ -49,4 +49,7 @@ dependencies {
testCompile project(path: ":syncany-lib", configuration: "tests")
testCompile project(path: ":syncany-cli", configuration: "tests")
testCompile project(path: ":syncany-util", configuration: "tests")

testRuntime "org.slf4j:slf4j-log4j12:1.7.5"
testRuntime "log4j:log4j:1.2.7"
}
4 changes: 2 additions & 2 deletions gradle/gradle/application.java.gradle
Expand Up @@ -5,8 +5,8 @@ subprojects {

group = 'org.syncany'

sourceCompatibility = 1.7
targetCompatibility = 1.7
sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions gradle/gradle/development.eclipse.gradle
Expand Up @@ -9,8 +9,8 @@ subprojects {
}

jdt {
sourceCompatibility = 1.7
targetCompatibility = 1.7
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}

Expand Down
6 changes: 3 additions & 3 deletions gradle/gradle/reports.coverage.gradle
Expand Up @@ -7,8 +7,8 @@ buildscript {
}

dependencies {
classpath 'net.saliman:gradle-cobertura-plugin:2.2.2'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.3.1'
classpath 'net.saliman:gradle-cobertura-plugin:2.2.8'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.4.0'
}
}

Expand Down Expand Up @@ -39,4 +39,4 @@ cobertura {

coveralls {
coberturaReportPath = "${buildDir}/reports/coverage/coverage.xml"
}
}

0 comments on commit 98c9bc8

Please sign in to comment.