This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 80ece558b69aa10067a99bf258324dcf1aaa763e Author: Peter Palaga <[email protected]> AuthorDate: Tue Jul 4 15:05:24 2023 +0200 Remove maven-eclipse-plugin that is retired since 2015; importing into Eclipse works quite well since many years. There is no need to use this plugin --- archetypes/pom.xml | 17 ----------------- parent/pom.xml | 12 ------------ pom.xml | 19 ------------------- 3 files changed, 48 deletions(-) diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 86be420ddd1..bcf413ed628 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -125,22 +125,5 @@ </plugin> </plugins> - - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-eclipse-plugin</artifactId> - <configuration> - <buildcommands> - <java.lang.String>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</java.lang.String> - </buildcommands> - <projectnatures> - <nature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</nature> - </projectnatures> - </configuration> - </plugin> - </plugins> - </pluginManagement> </build> </project> diff --git a/parent/pom.xml b/parent/pom.xml index a128fd1bf88..d453597b958 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -3021,18 +3021,6 @@ </compilerArgs> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-eclipse-plugin</artifactId> - <configuration> - <buildcommands> - <java.lang.String>org.eclipse.jdt.core.javabuilder</java.lang.String> - </buildcommands> - <projectnatures> - <nature>org.eclipse.jdt.core.javanature</nature> - </projectnatures> - </configuration> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> diff --git a/pom.xml b/pom.xml index 6e3b2041ecb..214d4a48844 100644 --- a/pom.xml +++ b/pom.xml @@ -135,9 +135,6 @@ <surefire.version>${maven-surefire-plugin-version}</surefire.version> <java-diff-utils-version>4.7</java-diff-utils-version> - <!-- eclipse plugin need the jaxb in this pom.xml file --> - <!-- Make sure to keep JAXB version up to date in parent/pom.xml in the bottom of the file --> - <jakarta-xml-bind-api-version>4.0.0</jakarta-xml-bind-api-version> <jaxb-core-version>4.0.1</jaxb-core-version> <jaxb-impl-version>4.0.1</jaxb-impl-version> <jaxb-osgi-version>4.0.1</jaxb-osgi-version> @@ -417,22 +414,6 @@ <artifactId>maven-dependency-plugin</artifactId> <version>${maven-dependency-plugin-version}</version> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-eclipse-plugin</artifactId> - <version>2.10</version> - <dependencies> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-buildtools</artifactId> - <version>${project.version}</version> - </dependency> - </dependencies> - <configuration> - <downloadSources>true</downloadSources> - <downloadJavadocs>false</downloadJavadocs> - </configuration> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId>
