editorconfig-linters-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ec4j.linters</groupId>
<artifactId>editorconfig-linters-parent</artifactId>
<version>2.2.2</version>
</dependency><!--
Copyright (c) 2017 EditorConfig Linters
project contributors as indicated by the @author tags.
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.ec4j.linters</groupId>
<artifactId>editorconfig-linters-parent</artifactId>
<version>2.2.2</version>
<packaging>pom</packaging>
<name>Language specific EditorConfig linters parent</name>
<description>Language specific EditorConfig linters parent</description>
<url>https://github.com/ec4j/editorconfig-linters</url>
<inceptionYear>2017</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ppalaga</id>
<name>Peter Palaga</name>
<timezone>Europe/Prague</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:ec4j/editorconfig-linters.git</connection>
<developerConnection>scm:git:git@github.com:ec4j/editorconfig-linters.git</developerConnection>
<url>https://github.com/ec4j/editorconfig-linters</url>
<tag>2.2.2</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/ec4j/editorconfig-linters/issues</url>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>${snapshots.repo.url}</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>${releases.repo.url}</url>
</repository>
</distributionManagement>
<modules>
<module>editorconfig-lint-api</module>
<module>editorconfig-linters</module>
<module>editorconfig-linters-bom</module>
</modules>
<properties>
<!-- Dependency versions in alphabectic order -->
<version.junit>4.13.2</version.junit>
<version.org.antlr>4.7</version.org.antlr>
<version.org.ec4j.core>0.2.1</version.org.ec4j.core>
<!-- Plugins and their dependencies -->
<version.com.mycila.license-maven-plugin>3.0</version.com.mycila.license-maven-plugin>
<version.formatter-maven-plugin>2.11.0</version.formatter-maven-plugin>
<version.impsort-maven-plugin>1.3.2</version.impsort-maven-plugin>
<version.maven-antrun-plugin>1.8</version.maven-antrun-plugin>
<version.maven-clean-plugin>2.6.1</version.maven-clean-plugin>
<version.maven-compiler-plugin>3.3</version.maven-compiler-plugin>
<version.maven-deploy-plugin>2.8.2</version.maven-deploy-plugin>
<version.maven-enforcer-plugin>1.4.1</version.maven-enforcer-plugin>
<version.maven-gpg-plugin>1.6</version.maven-gpg-plugin>
<version.maven-install-plugin>2.5.2</version.maven-install-plugin>
<version.maven-jar-plugin>2.6</version.maven-jar-plugin>
<version.maven-javadoc-plugin>3.2.0</version.maven-javadoc-plugin>
<version.maven-plugin-plugin>3.5.2</version.maven-plugin-plugin>
<version.maven-release-plugin>2.5.3</version.maven-release-plugin>
<version.maven-resources-plugin>2.7</version.maven-resources-plugin>
<version.maven-scm-plugin>2.0.1</version.maven-scm-plugin>
<version.maven-source-plugin>3.1.0</version.maven-source-plugin>
<version.maven-surefire-plugin>3.2.5</version.maven-surefire-plugin>
<version.nexus-staging-maven-plugin>1.6.13</version.nexus-staging-maven-plugin>
<version.org.codehaus.buildnumber-maven-plugin>1.4</version.org.codehaus.buildnumber-maven-plugin>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- maven-compiler-plugin -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
<!-- license-maven-plugin -->
<license.failIfMissing>true</license.failIfMissing>
<license.failIfUnknown>true</license.failIfUnknown>
<!-- nexus-staging-maven-plugin -->
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<!-- Repository Deployment URLs -->
<oss.nexus.base.url>https://s01.oss.sonatype.org</oss.nexus.base.url>
<releases.repo.url>${oss.nexus.base.url}/service/local/staging/deploy/maven2/</releases.repo.url>
<snapshots.repo.url>${oss.nexus.base.url}/content/repositories/snapshots/</snapshots.repo.url>
<!-- maven-surefire-plugin -->
<surefire.useFile>false</surefire.useFile>
<trimStackTrace>false</trimStackTrace>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${version.org.antlr}</version>
</dependency>
<dependency>
<groupId>org.ec4j.core</groupId>
<artifactId>ec4j-core</artifactId>
<version>${version.org.ec4j.core}</version>
</dependency>
<dependency>
<groupId>org.ec4j.linters</groupId>
<artifactId>editorconfig-lint-api</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.ec4j.linters</groupId>
<artifactId>editorconfig-linters</artifactId>
<version>2.2.2</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<!-- Ordering: alphabetical by groupId and artifactId -->
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${version.com.mycila.license-maven-plugin}</version>
<configuration>
<inlineHeader>Copyright (c) ${project.inceptionYear} EditorConfig Linters
project contributors as indicated by the @author tags.
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.</inlineHeader>
<excludes>
<exclude>**/*.adoc</exclude>
<exclude>**/README.*</exclude>
<exclude>**/.gitkeep</exclude>
<exclude>.gitattributes/</exclude>
<exclude>.mvn/wrapper/</exclude>
<exclude>.sdkmanrc/</exclude>
<exclude>LICENSE</exclude>
<exclude>mvnw</exclude>
<exclude>mvnw.cmd</exclude>
<exclude>**/renovate.json5</exclude>
<exclude>src/main/antlr4/org/ec4j/linters/xml/XmlLexer.g4</exclude><!-- BSD License -->
<exclude>src/main/antlr4/org/ec4j/linters/xml/XmlParser.g4</exclude><!-- BSD License -->
<exclude>src/test/resources/**/*.txt</exclude>
<exclude>src/test/resources/**/*.good</exclude>
<exclude>src/test/resources/**/*.bad</exclude>
<exclude>src/test/resources/bom/*</exclude>
<exclude>src/test/projects/defaults*/**/*.txt</exclude>
<exclude>src/test/projects/encoding/**/*.properties</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<version>${version.formatter-maven-plugin}</version>
</plugin>
<plugin>
<groupId>net.revelc.code</groupId>
<artifactId>impsort-maven-plugin</artifactId>
<version>${version.impsort-maven-plugin}</version>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>${version.org.antlr}</version>
<executions>
<execution>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>${version.maven-antrun-plugin}</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<!-- A workaround for takari-lifecycle's unability to add custion manifest entries
https://github.com/takari/takari-lifecycle/issues/21 -->
<manifest file="${project.build.directory}/MANIFEST.MF" encoding="${project.build.sourceEncoding}">
<attribute name="Built-By" value="${user.name}" />
<attribute name="Implementation-Title" value="${project.name}" />
<attribute name="Built-From-Git-Branch" value="${scmBranch}" />
<attribute name="Implementation-Version" value="${project.version}" />
<attribute name="Built-From-Git-SHA1" value="${buildNumber}" />
<attribute name="Implementation-Vendor-Id" value="${project.groupId}" />
<attribute name="Build-Jdk" value="${java.version}" />
<attribute name="Built-On" value="${timestamp}" />
</manifest>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${version.maven-clean-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.maven-compiler-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${version.maven-deploy-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${version.maven-enforcer-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${version.maven-gpg-plugin}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>${version.maven-install-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${version.maven-jar-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.maven-javadoc-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${version.maven-release-plugin}</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<preparationGoals>package</preparationGoals>
<goals>deploy</goals>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${version.maven-resources-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>${version.maven-scm-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.maven-source-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.maven-surefire-plugin}</version>
<configuration>
<systemPropertyVariables>
<basedir>${project.build.directory}</basedir>
<project.version>${project.version}</project.version>
<project.build.sourceEncoding>${project.build.sourceEncoding}</project.build.sourceEncoding>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>${version.org.codehaus.buildnumber-maven-plugin}</version>
<configuration>
<locale>en_US</locale>
<timestampFormat>{0,date,yyyy-MM-dd'T'HH:mm:ssX}</timestampFormat>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${version.nexus-staging-maven-plugin}</version>
<configuration>
<nexusUrl>${oss.nexus.base.url}</nexusUrl>
<!-- The server "id" element from settings.xml to use authentication from -->
<serverId>ossrh</serverId>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<configuration>
<configFile>eclipse-format.xml</configFile>
<skip>${format.skip}</skip>
</configuration>
<executions>
<execution>
<id>format-java</id>
<goals>
<goal>format</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.ec4j.core</groupId>
<artifactId>ec4j-core-build</artifactId>
<version>${version.org.ec4j.core}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>net.revelc.code</groupId>
<artifactId>impsort-maven-plugin</artifactId>
<configuration>
<groups>java.,javax.</groups>
<skip>${format.skip}</skip>
<removeUnused>true</removeUnused>
</configuration>
<executions>
<execution>
<id>sort-imports</id>
<goals>
<goal>sort</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<properties>
<!-- This makes the buildnumber-maven-plugin fail in case of uncommitted local changes -->
<maven.buildNumber.doCheck>true</maven.buildNumber.doCheck>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</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>
<configuration>
<source>8</source>
<additionalOptions>-Xdoclint:none</additionalOptions>
<detectOfflineLinks>false</detectOfflineLinks>
<detectJavaApiLink>false</detectJavaApiLink>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>