Skip to content

Commit

Permalink
Merge pull request #2 from intermedia-net/java_level_11
Browse files Browse the repository at this point in the history
Java 11
  • Loading branch information
anikitin-intermedia committed Oct 15, 2021
2 parents a2083bf + 83a2596 commit 1a2266b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 15
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '15'
java-version: '11'
distribution: 'adopt'
- name: Build with Gradle
run: ./gradlew build detekt validatePlugins
10 changes: 5 additions & 5 deletions printcoverage/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ plugins {
}

group = "com.intermedia"
version = "0.0.1"
version = "0.0.2"

java {
sourceCompatibility = JavaVersion.VERSION_15
targetCompatibility = JavaVersion.VERSION_15
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

compileKotlin {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_15
jvmTarget = JavaVersion.VERSION_11
}
}

Expand All @@ -25,7 +25,7 @@ repositories {
}

dependencies {
implementation("com.squareup.okhttp3:okhttp:4.9.1")
implementation("com.squareup.okhttp3:okhttp:4.9.2")
implementation("com.google.code.gson:gson:2.8.8")
implementation(gradleApi())

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pull requests!
In the module `build.gradle`:
```groovy
plugins {
id('com.intermedia.printcoverage').version('0.0.1')
id('com.intermedia.printcoverage').version('0.0.2')
}
import com.intermedia.printcoverage.azure.AzurePrinterFactory
Expand Down

0 comments on commit 1a2266b

Please sign in to comment.