Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/branch-cicd.yaml.off
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

strategy:
matrix:
java-version: [17]
java-version: [21, 25]

steps:
-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/legacy-branch-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

strategy:
matrix:
java-version: [17]
java-version: [21, 25]

steps:
-
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,3 @@ target/
# macOS specific stuff
.DS_Store
._*

2 changes: 1 addition & 1 deletion common/.github/workflows/branch-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java-version: [11,18]
java-version: [21, 25]

steps:
-
Expand Down
2 changes: 1 addition & 1 deletion common/.github/workflows/stable-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
uses: NASA-PDS/roundup-action@stable
with:
assembly: stable
packages: openjdk11-jdk
packages: openjdk21-jdk
env:
central_portal_username: ${{secrets.CENTRAL_REPOSITORY_USERNAME}}
central_portal_token: ${{secrets.CENTRAL_REPOSITORY_TOKEN}}
Expand Down
2 changes: 1 addition & 1 deletion common/.github/workflows/unstable-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
uses: NASA-PDS/roundup-action@stable
with:
assembly: unstable
packages: openjdk11-jdk
packages: openjdk21-jdk
env:
central_portal_username: ${{secrets.CENTRAL_REPOSITORY_USERNAME}}
central_portal_token: ${{secrets.CENTRAL_REPOSITORY_TOKEN}}
Expand Down
6 changes: 0 additions & 6 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@ POSSIBILITY OF SUCH DAMAGE.
</license>
</licenses>

<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<!-- Elasticsearch client-->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion harvest/.github/workflows/branch-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# 👉 For the `harvest` repo, we only need to use JDK 11 for some reason. (In the branch
# workflow pre-template-rollout-summer-2021, there was no matrix strategy and JDK 11
# was "specifically specified".)
java-version: [17, 21]
java-version: [21, 25]

steps:
-
Expand Down
2 changes: 1 addition & 1 deletion harvest/.github/workflows/stable-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
uses: NASA-PDS/roundup-action@stable
with:
assembly: stable
packages: openjdk17-jdk
packages: openjdk21-jdk
maven-build-phases: install
maven-doc-phases: clean,site,site:stage
maven-stable-artifact-phases: clean,site,site:stage,deploy
Expand Down
2 changes: 1 addition & 1 deletion harvest/.github/workflows/unstable-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
name: 🤠 Roundup
uses: NASA-PDS/roundup-action@stable
with:
packages: openjdk17-jdk
packages: openjdk21-jdk
assembly: unstable
env:
central_portal_username: ${{secrets.CENTRAL_REPOSITORY_USERNAME}}
Expand Down
6 changes: 0 additions & 6 deletions harvest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@
<developerConnection>scm:git:ssh://git@github.com/NASA-PDS/harvest.git</developerConnection>
</scm>

<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<!-- Command line interface / parameters -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion manager/.github/workflows/branch-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java-version: [17]
java-version: [21, 25]

steps:
-
Expand Down
2 changes: 1 addition & 1 deletion manager/.github/workflows/stable-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
uses: NASA-PDS/roundup-action@stable
with:
assembly: stable
packages: openjdk17-jdk
packages: openjdk21-jdk
maven-build-phases: install
maven-doc-phases: clean,site,site:stage
maven-stable-artifact-phases: clean,site,site:stage,deploy
Expand Down
2 changes: 1 addition & 1 deletion manager/.github/workflows/unstable-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
uses: NASA-PDS/roundup-action@stable
with:
assembly: unstable
packages: openjdk17-jdk
packages: openjdk21-jdk
env:
central_portal_username: ${{secrets.CENTRAL_REPOSITORY_USERNAME}}
central_portal_token: ${{secrets.CENTRAL_REPOSITORY_TOKEN}}
Expand Down
7 changes: 0 additions & 7 deletions manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,6 @@ POSSIBILITY OF SUCH DAMAGE.
</license>
</licenses>

<properties>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<!-- Command-line args parser -->
<dependency>
Expand Down
Loading
Loading