itm-java-codeformat-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.muenchen.itm</groupId>
<artifactId>itm-java-codeformat-parent</artifactId>
<version>1.0.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>de.muenchen.itm</groupId>
<artifactId>itm-java-codeformat-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.3</version>
<name>itm-java-codeformat</name>
<description>it@M java Codeformat</description>
<url>https://github.com/it-at-m/itm-java-codeformat</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<formatter-maven-plugin.version>2.19.0</formatter-maven-plugin.version>
</properties>
<modules>
<module>formatter</module>
<module>formatter-test</module>
</modules>
<licenses>
<license>
<name>MIT License</name>
</license>
</licenses>
<developers>
<developer>
<name>Michael Prankl</name>
<organization>Landeshauptstadt München</organization>
<url>https://github.com/eidottermihi</url>
<roles>
<role>initiator</role>
<role>developer</role>
</roles>
</developer>
<developer>
<name>Mirna Rodic</name>
<organization>Landeshauptstadt München</organization>
<url>https://github.com/mirrodi</url>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<!-- for releasing with maven release -->
<scm>
<url>https://github.com/it-at-m/itm-java-codeformat</url>
<connection>scm:git:git@github.com:it-at-m/itm-java-codeformat.git</connection>
<developerConnection>scm:git:git@github.com:it-at-m/itm-java-codeformat.git</developerConnection>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<!-- Central Repository -->
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.muenchen.itm</groupId>
<artifactId>itm-java-codeformat</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>enforce required maven version</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.8,)</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<!-- GPG plugin -->
<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>
<configuration>
<!-- Prevent `gpg` from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>