Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.0.x] Align with drools 9.102.x-prod #129

Merged
merged 1 commit into from
Dec 10, 2024
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
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.prod.nightly
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pipeline{
script {
// Fetch versions from pom if not provided
env.PRODUCT_VERSION = "${PRODUCT_VERSION ?: parseVersionFromPom('kiegroup/drools-ansible-rulebook-integration')}"
env.DROOLS_PRODUCT_VERSION = "${DROOLS_PRODUCT_VERSION ?: parseVersionFromPom('kiegroup/drools', '9.101.x-prod')}"
env.DROOLS_PRODUCT_VERSION = "${DROOLS_PRODUCT_VERSION ?: parseVersionFromPom('kiegroup/drools', '9.102.x-prod')}"
}

sh 'printenv'
Expand Down
4 changes: 2 additions & 2 deletions .ci/project-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies:
dependant:
default:
# whenever drools branch changes, please update .ci/jenkins/Jenkinsfile.prod.nightly as well if needed
- source: 9.101.x-prod
- source: 9.102.x-prod
target: 1.0.x

- project: kiegroup/drools-ansible-rulebook-integration
Expand All @@ -15,4 +15,4 @@ dependencies:
dependencies:
default:
- source: 1.0.x
target: 9.101.x-prod
target: 9.102.x-prod
6 changes: 3 additions & 3 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
distribution: 'adopt'


- name: Checkout Drools 9.101.0
- name: Checkout Drools 9.102.0
uses: actions/checkout@v3
with:
repository: kiegroup/drools
path: drools
ref: 9.101.x-prod
ref: 9.102.x-prod

- name: Build Drools 9.101.0 with Maven
- name: Build Drools 9.102.0 with Maven
run: cd drools && mvn --batch-mode --update-snapshots install -Dquickly && cd ..

- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<version.drools>9.101.0</version.drools> <!-- kiegroup/drools 9.101.x-prod branch-->
<version.drools>9.102.0</version.drools> <!-- kiegroup/drools 9.102.x-prod branch-->
<version.org.antlr4>4.13.0</version.org.antlr4><!-- antlr4 (and exec:java) maven plugins not managed in drools-build-parent -->
<version.jmh>1.35</version.jmh>
</properties>
Expand Down
Loading