Skip to content
Merged
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
20 changes: 20 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Integration

on:
workflow_dispatch:
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
call-shared:
uses: trustification/exhort-integration-tests/.github/workflows/integration.yml@main
with:
language: java
repo-url: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
commit-sha: ${{ github.event.pull_request.head.sha || github.sha }}
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
checks: write
pull-requests: write
env:
MAIN_JAVA_VER: 11
MAIN_JAVA_VER: 17
RUN_PYTHON_BIN: ${{ vars.RUN_PYTHON_BIN }}
strategy:
matrix:
java: [11, 17, 21]
java: [17, 21]
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
fetch-depth: 0


- name: Setup Java 11
uses: actions/setup-java@v3
- name: Setup Java 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
java-version: 17
cache: maven

- name: create ssh agent
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Setup Java 11
uses: actions/setup-java@v3
- name: Setup Java 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
java-version: 17
cache: maven

- name: Get pom specs
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,12 @@ dependency-reduced-pom.xml
# Node
node_modules

# Python virtual envs
.venv

# project stuff
http_requests
json_responses
**/.DS_Store
.idea/

4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<code.coverage.threshold>81%</code.coverage.threshold>
<mutation.coverage.threshold>50</mutation.coverage.threshold>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.release>17</maven.compiler.release>
<!-- Dependencies -->
<exhort-api.version>1.0.6</exhort-api.version>
<jackson.version>2.15.0</jackson.version>
Expand All @@ -30,7 +30,7 @@
<mockito.version>5.17.0</mockito.version>
<!-- Plugins -->
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
<maven-dependency-plugin.version>3.6.0</maven-dependency-plugin.version>
<maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
<maven-enforcer-plugin.version>3.3.0</maven-enforcer-plugin.version>
Expand Down
Loading