-
Notifications
You must be signed in to change notification settings - Fork 50
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
feat(QTDI-113): Support Java 17 compilation #936
base: master
Are you sure you want to change the base?
Conversation
- refactor compiler properties - bump maven-surefire-plugin - bump maven-shade-plugin - bump maven-resource-plugin - bump maven-javadoc-plugin - bump maven-assembly-plugin - bump maven-antrun-plugin - bump maven to 3.9.9 - bump maven-invoker-plugin - bump maven-site-plugin - bump maven-source-plugin maven-release-plugin - bump maven-jar-plugin to 3.4.2 - bump maven-deploy-plugin to 3.1.3 - refactor maven-deploy-plugin.version - bump maven-deploy-plugin to 3.1.3 - bump maven-dependency-plugin to 3.8.0 - bump maven-clean-plugin to 3.4.0 - bump maven-compiler-plugin to 3.13.0 - set source/target to 17
- remove mockito from project
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
# Conflicts: # bom/pom.xml
This comment has been minimized.
This comment has been minimized.
# Conflicts: # documentation/src/main/antora/modules/ROOT/pages/_partials/generated_contributors.adoc # pom.xml
This comment has been minimized.
This comment has been minimized.
# Conflicts: # .tool-versions
Analysis Details0 IssuesCoverage and DuplicationsProject ID: org.talend.sdk.component:component-runtime |
@@ -150,6 +150,9 @@ | |||
<properties> | |||
<scm.repository>talend/component-runtime</scm.repository> | |||
|
|||
<maven.compiler.source>17</maven.compiler.source> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When do we plan to use this new component-runtime in Studio?
We can't use it before R2025-02, we should support Java 8 and Java11 before R2025-02
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, aware on the delays. We may postpone to next rel.
@@ -59,7 +60,7 @@ | |||
<dependency> | |||
<groupId>org.apache.maven.plugin-tools</groupId> | |||
<artifactId>maven-plugin-annotations</artifactId> | |||
<version>${mvn-minimal.version}</version> | |||
<version>${maven-plugin-annotations.version}</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where do we use "mvn-minimal.version"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's used in requireMavenVersion for enforcer plugin.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, but please see comments
https://qlik-dev.atlassian.net/browse/QTDI-113