Skip to content

Commit

Permalink
Remove jcenter-repository (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybroeker authored Sep 2, 2021
1 parent a7bbbd3 commit 2b509cf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:
runs-on: ubuntu-latest
steps:

# Setup Java 1.8 environment for the next steps
# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11

# Check out current repository
- name: Fetch Sources
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11

# Check out current repository
- name: Fetch Sources
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest
steps:

# Setup Java 1.8 environment for the next steps
# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11

# Check out current repository
- name: Fetch Sources
Expand All @@ -39,11 +39,11 @@ jobs:
runs-on: ubuntu-latest
steps:

# Setup Java 1.8 environment for the next steps
# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11

# Check out current repository
- name: Fetch Sources
Expand Down
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
jacoco
id("idea")
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
id("org.jetbrains.intellij") version "0.6.3"
id("org.jetbrains.intellij") version "0.7.3"
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
id("org.jetbrains.changelog") version "0.6.2"
}
Expand Down Expand Up @@ -50,7 +50,6 @@ configurations["pmdwrapperRuntime"].extendsFrom(configurations["runtime"])
// Configure project's dependencies
repositories {
mavenCentral()
jcenter()
}

// Configure gradle-intellij-plugin plugin.
Expand Down

0 comments on commit 2b509cf

Please sign in to comment.