This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/SLING-12715 in repository https://gitbox.apache.org/repos/asf/sling-feature-converter-maven-plugin.git
commit 80c32d95e7ad6b6c9eafbf2ea8d0d2c80fd60a8c Author: Robert Munteanu <[email protected]> AuthorDate: Wed Mar 26 17:48:54 2025 +0100 SLING-12715 - feature-converter-maven-plugin Jenkins buid fails Remove the explicit Java 7 source/target configurations from the IT projects and instead inherit the one configured from the local parent pom. --- src/it/package-with-single-bundle-no-parameters/core/pom.xml | 4 ---- src/it/package-with-single-bundle-target-mode/core/pom.xml | 6 +----- src/it/package-with-single-bundle-with-parameters/core/pom.xml | 4 ---- 3 files changed, 1 insertion(+), 13 deletions(-) diff --git a/src/it/package-with-single-bundle-no-parameters/core/pom.xml b/src/it/package-with-single-bundle-no-parameters/core/pom.xml index 87d94f2..7895dc7 100644 --- a/src/it/package-with-single-bundle-no-parameters/core/pom.xml +++ b/src/it/package-with-single-bundle-no-parameters/core/pom.xml @@ -58,10 +58,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>7</source> - <target>7</target> - </configuration> </plugin> <plugin> <groupId>org.apache.sling</groupId> diff --git a/src/it/package-with-single-bundle-target-mode/core/pom.xml b/src/it/package-with-single-bundle-target-mode/core/pom.xml index 76052db..e8a60c9 100644 --- a/src/it/package-with-single-bundle-target-mode/core/pom.xml +++ b/src/it/package-with-single-bundle-target-mode/core/pom.xml @@ -58,11 +58,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>7</source> - <target>7</target> - </configuration> - </plugin> + </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>maven-sling-plugin</artifactId> diff --git a/src/it/package-with-single-bundle-with-parameters/core/pom.xml b/src/it/package-with-single-bundle-with-parameters/core/pom.xml index edec4b9..e7f76b5 100644 --- a/src/it/package-with-single-bundle-with-parameters/core/pom.xml +++ b/src/it/package-with-single-bundle-with-parameters/core/pom.xml @@ -58,10 +58,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>7</source> - <target>7</target> - </configuration> </plugin> <plugin> <groupId>org.apache.sling</groupId>
