Skip to content

Commit

Permalink
Updated to Java11
Browse files Browse the repository at this point in the history
  • Loading branch information
olegs committed Oct 6, 2022
1 parent 9605fb6 commit 5a9cb53
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ See [releases](https://github.com/JetBrains-Research/span/releases) section for
Requirements
------------

Download and install [Java 8](http://www.java.com/en/download/).
Download and install [Java 11](http://www.java.com/en/download/).

Peak calling
------------
Expand Down
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ apply plugin: "kotlin"

mainClassName = "org.jetbrains.bio.span.SpanCLA"

sourceCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = sourceCompatibility
compileKotlin { kotlinOptions.jvmTarget = sourceCompatibility }
compileTestKotlin { kotlinOptions.jvmTarget = sourceCompatibility }
Expand All @@ -43,9 +43,8 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-support-jdk8:0.1")

// Logging dependencies
implementation("ch.qos.logback:logback-classic:1.2.3")
implementation("ch.qos.logback:logback-core:1.2.3")
implementation("org.slf4j:slf4j-api:1.7.25")
implementation("ch.qos.logback:logback-classic:1.4.3")
implementation("ch.qos.logback:logback-core:1.4.3")


compile project(":bioinf-commons")
Expand Down
3 changes: 1 addition & 2 deletions src/main/kotlin/org/jetbrains/bio/span/SpanCLA.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ object SpanCLA {
* SpanCLA fails to set up correct working directory, if launched within the same process.
* This is a HACK.
*/
@VisibleForTesting
var ignoreConfigurePaths: Boolean = false
var ignoreConfigurePaths: Boolean = false

init {
// Load build properties
Expand Down

0 comments on commit 5a9cb53

Please sign in to comment.