Skip to content

feat(QTDI-113): Support Java 17 compilation (#from:936) #1061

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

Merged
merged 14 commits into from
Aug 4, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
modify pom
  • Loading branch information
yyin-talend committed Jun 12, 2025
commit 10af6b58fdd9d24c60026ad9a2ee35e01f1276b2
13 changes: 7 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@

<!-- for the starter -->
<mvn.version>3.9.9</mvn.version>
<mvn-minimal.version>3.8.0</mvn-minimal.version>
<maven-shared-utils.version>3.3.4</maven-shared-utils.version>
<mvn-minimal.version>3.6.0</mvn-minimal.version>
<maven-shared-utils.version>3.4.2</maven-shared-utils.version>

<beam.version>2.46.0</beam.version>
<snappy.version>1.1.10.5</snappy.version>
Expand Down Expand Up @@ -252,7 +252,6 @@
<maven-release-plugin.version>3.1.1</maven-release-plugin.version>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
<maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>
<maven-shared-utils.version>3.4.2</maven-shared-utils.version>
<maven-site-plugin.version>3.21.0</maven-site-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<git-commit-id-plugin.version>4.9.10</git-commit-id-plugin.version>
Expand Down Expand Up @@ -1057,6 +1056,7 @@
<bottom>${project.version} - Copyright &amp;copy; 2024 &lt;a
href="https://talend.github.io/component-runtime/" target="_top"&gt;Talend Component Kit Documentation&lt;a&gt;</bottom>
<use>true</use>
<legacyMode>true</legacyMode>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -1237,7 +1237,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<forceJavacCompilerUse>true</forceJavacCompilerUse>
<forceLegacyJavacApi>true</forceLegacyJavacApi>
<compilerId>javac</compilerId>
<fork>true</fork>
<compilerArgs>
Expand Down Expand Up @@ -1459,12 +1459,12 @@
* limitations under the License.
*/]]></content>
</licenseHeader>
<eclipse>
<!--eclipse>
<file>${maven.multiModuleProjectDirectory}/build/talend_java_eclipse_formatter.xml</file>
</eclipse>
<importOrder>
<file>${maven.multiModuleProjectDirectory}/build/talend.importorder</file>
</importOrder>
</importOrder-->
<removeUnusedImports/>
</java>
<pom>
Expand Down Expand Up @@ -1948,6 +1948,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
5 changes: 3 additions & 2 deletions talend-component-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,16 @@
<artifactId>component-tools</artifactId>
<version>${project.version}</version>
</dependency>
<dependency><!-- extends runtime manager with design time data -->
<dependency>
<!-- extends runtime manager with design time data -->
<groupId>org.talend.sdk.component</groupId>
<artifactId>component-runtime-design-extension</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven-plugin-annotations.version}</version>
<version>${mvn-minimal.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down
Loading