formatter-m2e-configurator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-m2e-configurator</artifactId> <version>2.6.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.takari</groupId> <artifactId>takari</artifactId> <version>53</version> <relativePath /> </parent> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-m2e-configurator</artifactId> <version>2.6.4</version> <packaging>pom</packaging> <name>formatter-m2e-configurator</name> <description>M2E configurator for the formatter-maven-plugin</description> <url>https://github.com/revelc/formatter-m2e-configurator/</url> <inceptionYear>2010</inceptionYear> <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>jecki.go</id> <name>Jecki</name> <email>jecki.go@gmail.com</email> </developer> <developer> <id>matt.blanchette</id> <name>Matt Blanchette</name> <email>matt.blanchette@gmail.com</email> </developer> <developer> <id>velo</id> <name>Marvin Froeder</name> <email>velo.br@gmail.com</email> </developer> <developer> <id>jlandis</id> <name>Jeremy Landis</name> </developer> <developer> <name>Christopher Tubbs</name> </developer> </developers> <modules> <module>net.revelc.code.formatter</module> <module>net.revelc.code.formatter.feature</module> <module>net.revelc.code.formatter.site</module> <!-- <module>net.revelc.code.formatter.test</module> --> </modules> <scm> <connection>scm:git:git@github.com/revelc/formatter-m2e-configurator.git</connection> <developerConnection>scm:git:git@github.com/revelc/formatter-m2e-configurator.git</developerConnection> <tag>formatter-m2e-configurator-2.6.4</tag> <url>https://github.com/revelc/formatter-m2e-configurator</url> </scm> <issueManagement> <system>Github</system> <url>https://github.com/revelc/formatter-m2e-configurator/issues</url> </issueManagement> <ciManagement> <system>GitHub</system> <url>https://github.com/revelc/formatter-m2e-configurator/actions</url> </ciManagement> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <site> <id>gh-pages</id> <name>Formatter Maven Plugin GitHub Pages</name> <url>git:ssh://git@github.com/revelc/formatter-m2e-configurator.git?gh-pages#</url> </site> </distributionManagement> <properties> <autoVersionSubmodules>true</autoVersionSubmodules> <eclipse-repo.url>http://download.eclipse.org/releases/2024-03</eclipse-repo.url> <m2e-core.url>https://download.eclipse.org/technology/m2e/releases/2.6.0/</m2e-core.url> <!-- because of https://issues.apache.org/jira/browse/MCOMPILER-485 --> <maven.compiler.createMissingPackageInfoClass>false</maven.compiler.createMissingPackageInfoClass> <maven.compiler.release>17</maven.compiler.release> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <tagNameFormat>formatter-m2e-configurator-@{project.version}</tagNameFormat> <takari.release.gpg.skip>true</takari.release.gpg.skip> <tychoVersion>4.0.7</tychoVersion> </properties> <repositories> <repository> <id>m2e-core</id> <url>${m2e-core.url}</url> <layout>p2</layout> </repository> <repository> <id>eclipse</id> <url>${eclipse-repo.url}</url> <layout>p2</layout> </repository> </repositories> <build> <pluginManagement> <plugins> <plugin> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> <version>1.5.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.11.0</version> <executions> <execution> <id>default-descriptor</id> <goals> <goal>descriptor</goal> </goals> <phase>process-classes</phase> </execution> <execution> <id>help-descriptor</id> <goals> <goal>helpmojo</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.3.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <!-- ignore takari-lifecycle --> <skip>false</skip> <skipMain>false</skipMain> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.1</version> <configuration> <!-- ignore takari-lifecycle --> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.4.1</version> <configuration> <rules> <requireMavenVersion> <version>[3.0.5,)</version> </requireMavenVersion> <requireJavaVersion> <version>[${maven.compiler.source},)</version> </requireJavaVersion> </rules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>3.1.1</version> <configuration> <!-- ignore takari-lifecycle --> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> <configuration> <!-- ignore takari-lifecycle --> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <!-- ignore takari-lifecycle --> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <configuration> <legacyMode>true</legacyMode> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.6.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.1</version> <configuration> <arguments>-Psonatype-oss-release</arguments> <goals>clean deploy</goals> <!-- Bypass build during release, and commit version changes --> <!-- Build will probably not fail during release, so test it with mvn verify first --> <preparationGoals>-Pcommit-changed-manifests clean scm:add scm:checkin</preparationGoals> <completionGoals>-Pcommit-changed-manifests clean scm:add scm:checkin</completionGoals> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <useReleaseProfile>false</useReleaseProfile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <configuration> <!-- ignore takari-lifecycle --> <skipSource>false</skipSource> </configuration> </plugin> <!-- Find maven root --> <plugin> <groupId>org.commonjava.maven.plugins</groupId> <artifactId>directory-maven-plugin</artifactId> <version>1.0</version> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.3</version> <dependencies> <dependency> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin-git</artifactId> <version>4.3</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>3.3.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.16.2</version> </plugin> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>target-platform-configuration</artifactId> <version>${tychoVersion}</version> <configuration> <pomDependencies>consider</pomDependencies> <executionEnvironment>JavaSE-17</executionEnvironment> <environments> <environment> <os>win32</os> <ws>win32</ws> <arch>x86_64</arch> </environment> <environment> <os>linux</os> <ws>gtk</ws> <arch>x86_64</arch> </environment> <environment> <os>macosx</os> <ws>cocoa</ws> <arch>x86_64</arch> </environment> </environments> </configuration> </plugin> <plugin> <groupId>com.github.ekryd.sortpom</groupId> <artifactId>sortpom-maven-plugin</artifactId> <version>3.4.1</version> <configuration> <createBackupFile>false</createBackupFile> <expandEmptyElements>false</expandEmptyElements> <keepBlankLines>true</keepBlankLines> <nrOfIndentSpace>2</nrOfIndentSpace> <predefinedSortOrder>recommended_2008_06</predefinedSortOrder> <spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement> <sortProperties>true</sortProperties> <verifyFail>Stop</verifyFail> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-maven-plugin</artifactId> <version>${tychoVersion}</version> <extensions>true</extensions> </plugin> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-p2-plugin</artifactId> <version>${tychoVersion}</version> <executions> <execution> <id>attach-p2-metadata</id> <goals> <goal>p2-metadata</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-p2-repository-plugin</artifactId> <version>${tychoVersion}</version> <configuration> <compress>false</compress> </configuration> </plugin> <!-- Find maven root --> <plugin> <groupId>org.commonjava.maven.plugins</groupId> <artifactId>directory-maven-plugin</artifactId> <executions> <execution> <id>directories</id> <goals> <goal>highest-basedir</goal> </goals> <phase>validate</phase> <configuration> <property>main.basedir</property> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <useDefaultExcludes>true</useDefaultExcludes> <licenseSets> <licenseSet> <header>${main.basedir}/src/config/LICENSE_HEADER</header> <excludes> <exclude>NOTICE</exclude> <exclude>**/*license.html</exclude> <exclude>**/*plugin_customization.ini</exclude> </excludes> </licenseSet> </licenseSets> <prohibitLegacyUse>true</prohibitLegacyUse> </configuration> <executions> <execution> <id>license-headers</id> <goals> <goal>format</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> </execution> <execution> <id>enforce-clean</id> <goals> <goal>enforce</goal> </goals> <phase>pre-clean</phase> </execution> <execution> <id>enforce-site</id> <goals> <goal>enforce</goal> </goals> <phase>pre-site</phase> </execution> </executions> </plugin> <plugin> <groupId>com.github.ekryd.sortpom</groupId> <artifactId>sortpom-maven-plugin</artifactId> <executions> <execution> <id>sort-pom</id> <goals> <goal>sort</goal> </goals> <phase>process-sources</phase> </execution> <execution> <id>verify-pom</id> <goals> <goal>verify</goal> </goals> <phase>process-resources</phase> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>sonatype-oss-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>update-manifests</id> <activation> <file> <exists>META-INF/MANIFEST.MF</exists> </file> </activation> <build> <plugins> <plugin> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> <executions> <execution> <id>update-manifest-version-from-pom</id> <goals> <goal>replace</goal> </goals> <phase>pre-clean</phase> <configuration> <file>${project.basedir}/META-INF/MANIFEST.MF</file> <replacements> <replacement> <token>Bundle-Version:.*</token> <value>Bundle-Version: ${project.version}</value> </replacement> </replacements> </configuration> </execution> <execution> <id>version-with-snapshot-update-manifest</id> <goals> <goal>replace</goal> </goals> <phase>pre-clean</phase> <configuration> <file>${project.basedir}/META-INF/MANIFEST.MF</file> <replacements> <replacement> <token>-SNAPSHOT</token> <value>.qualifier</value> </replacement> </replacements> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>commit-changed-manifests</id> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> <configuration> <includes>net.revelc.code.formatter/META-INF/MANIFEST.MF,net.revelc.code.formatter.feature/feature.xml,net.revelc.code.formatter.site/category.xml,net.revelc.code.formatter.test/META-INF/MANIFEST.MF</includes> <message>[maven-release-plugin] increment Bundle-Version for ${project.version}</message> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> </project>