Skip to content

Commit

Permalink
Merge pull request #95 from jburel/build_fix
Browse files Browse the repository at this point in the history
Build fix
  • Loading branch information
jburel authored Nov 19, 2024
2 parents a78dae4 + 83a5375 commit 81db0c8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ on:

jobs:
build:
uses: ome/action-workflows/.github/workflows/gradle_build.yml@v2
uses: ome/action-workflows/.github/workflows/gradle_build.yml@main
publish_snapshots:
if: ${{ github.ref == 'refs/heads/master' && github.repository_owner == 'ome' }}
needs: build
uses: ome/action-workflows/.github/workflows/gradle_publish.yml@v2
uses: ome/action-workflows/.github/workflows/gradle_publish.yml@main
with:
ARTIFACTORY_URL: "snapshots"
secrets:
Expand All @@ -22,7 +22,7 @@ jobs:
publish:
needs: build
if: startsWith(github.ref, 'refs/tags') && github.repository_owner == 'ome'
uses: ome/action-workflows/.github/workflows/gradle_publish.yml@v2
uses: ome/action-workflows/.github/workflows/gradle_publish.yml@main
with:
ARTIFACTORY_URL: "releases"
secrets:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ https://docs.openmicroscopy.org/latest/omero/developers/
The compilation, testing, launch, and delivery of the application are
automated by means of a Gradle (https://gradle.org/) build file.
In order to perform a build, all you need is
a JDK -- version 1.8 or later.
a JDK -- version 11 and Gradle 6.8.x.
Clone this GitHub repository `git clone https://github.com/ome/omero-gateway-java.git`.
Go to the directory and enter:

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

plugins {
id 'java-library'
id "org.openmicroscopy.project" version "5.5.4"
id "org.openmicroscopy.project" version "5.7.0"
}

group = "org.openmicroscopy"
Expand Down

0 comments on commit 81db0c8

Please sign in to comment.