META-INF.maven.org.dominokit.domino-apt-commons.pom.xml Maven / Gradle / Ivy
<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.dominokit</groupId> <artifactId>domino-apt-commons</artifactId> <version>1.0.3</version> <packaging>jar</packaging> <name>domino-apt-commons</name> <description>Set of utility classes for annotation processing</description> <url>https://github.com/DominoKit/domino-apt-commons</url> <organization> <name>Dominokit</name> <url>https://github.com/DominoKit</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Ahmad K. Bawaneh</name> <email>[email protected]</email> </developer> <developer> <name>Rafat J. Al-Barouki</name> <email>[email protected]</email> </developer> </developers> <issueManagement> <url>https://github.com/DominoKit/domino-apt-commons/issues</url> <system>GitHub Issues</system> </issueManagement> <inceptionYear>2019</inceptionYear> <scm> <connection>scm:git:https://github.com/DominoKit/domino-apt-commons.git</connection> <developerConnection>scm:git:[email protected]:DominoKit/domino-apt-commons.git</developerConnection> <url>https://github.com/DominoKit/domino-apt-commons</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <snapshot.version>HEAD-SNAPSHOT</snapshot.version> <next.release.version>1.0.3</next.release.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.plugin>3.8.1</maven.compiler.plugin> <maven.source.plugin>3.0.1</maven.source.plugin> <maven.javadoc.plugin>2.10.4</maven.javadoc.plugin> <maven.gpg.plugin>1.6</maven.gpg.plugin> <maven.nexus.staging.plugin>1.6.8</maven.nexus.staging.plugin> <maven.deploy.plugin>3.0.0-M1</maven.deploy.plugin> <maven.fmt.plugin>2.9</maven.fmt.plugin> <maven.install.plugin>3.0.0-M1</maven.install.plugin> <maven.license.plugin>3.0</maven.license.plugin> <maven.surfire.plugin>3.0.0-M1</maven.surfire.plugin> <maven.gwt.plugin>1.0.0</maven.gwt.plugin> <elemental2.version>1.1.0</elemental2.version> <auto.service.version>1.0-rc7</auto.service.version> <javapoet.version>1.13.0</javapoet.version> <junit.version>4.13.1</junit.version> <assertj.version>3.18.1</assertj.version> <slf4j.version>1.7.30</slf4j.version> </properties> <dependencies> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>${auto.service.version}</version> </dependency> <dependency> <groupId>com.squareup</groupId> <artifactId>javapoet</artifactId> <version>${javapoet.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.8.0</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.11</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.coveo</groupId> <artifactId>fmt-maven-plugin</artifactId> <version>${maven.fmt.plugin}</version> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${maven.license.plugin}</version> <configuration> <header>LICENSE.header</header> <encoding>${project.build.sourceEncoding}</encoding> <skipExistingHeaders>true</skipExistingHeaders> <mapping> <java>SLASHSTAR_STYLE</java> </mapping> <excludes> <exclude>**/README.md</exclude> <exclude>**/LICENSE</exclude> <exclude>**/LICENSE.header</exclude> <exclude>**/AUTHORS</exclude> <exclude>**/src/test/resources/**</exclude> <exclude>**/src/main/resources/**</exclude> <exclude>**/war</exclude> <exclude>**/pom.xml</exclude> <exclude>**/.flattened-pom.xml</exclude> <exclude>**/gwt-unitcache</exclude> </excludes> <properties> <year>${project.inceptionYear}</year> <name>${project.organization.name}</name> </properties> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven.deploy.plugin}</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.dominokit</groupId> <artifactId>gitflow-maven-plugin</artifactId> <version>1.0.0</version> <configuration> <snapshotVersionProperty>snapshot.version</snapshotVersionProperty> <releaseVersionProperty>next.release.version</releaseVersionProperty> <!-- Set to true to immediately bump the development version when creating a release branch --> <commitDevelopmentVersionAtStart>true</commitDevelopmentVersionAtStart> <!-- Which digit to increas in major.minor.patch versioning, the values being 0.1.2 respectively. By default the rightmost number is increased. Pass in the number via parameter or profile to allow configuration, since everything set in the file can't be overwritten via command line --> <versionDigitToIncrement>${bump.digit}</versionDigitToIncrement> <!-- Execute mvn verify before release --> <preReleaseGoals>verify</preReleaseGoals> <preHotfixGoals>verify</preHotfixGoals> <!-- Configure branches --> <gitFlowConfig> <productionBranch>master</productionBranch> <!-- default is develop, but we use development --> <developmentBranch>development</developmentBranch> </gitFlowConfig> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin}</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin}</version> <configuration> <failOnError>false</failOnError> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin}</version> <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> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${maven.nexus.staging.plugin}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>dev</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>com.coveo</groupId> <artifactId>fmt-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>production</id> <activation> <property> <name>ci</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>com.coveo</groupId> <artifactId>fmt-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>