filemerger-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.antonio-petricca</groupId>
<artifactId>filemerger-maven-plugin</artifactId>
<version>1.6.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
https://s01.oss.sonatype.org/#nexus-search;quick~filemerger
https://central.sonatype.com/artifact/io.github.antonio-petricca/filemerger-maven-plugin/versions
https://repo.maven.apache.org/maven2/io/github/antonio-petricca/filemerger-maven-plugin/
https://mvnrepository.com/artifact/io.github.antonio-petricca/filemerger-maven-plugin
https://maven.apache.org/guides/plugin/guide-java-plugin-development.html
https://central.sonatype.org/publish/#individual-projects-open-source-software-repository-hosting-ossrh
https://central.sonatype.org/publish/generate-token/
https://central.sonatype.org/publish/publish-maven/#deployment
https://central.sonatype.org/publish/requirements/#sufficient-metadata
https://central.sonatype.org/publish/requirements/gpg/#listing-keys
https://issues.sonatype.org/browse/OSSRH-96209?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel
https://www.baeldung.com/maven-plugin
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>File Merger maven plugin</name>
<description>Loads and merges text/code/configuration external files into another one by placeholders.</description>
<url>https://github.com/antonio-petricca/filemerger-maven-plugin</url>
<scm>
<connection>scm:git:https://github.com/antonio-petricca/filemerger-maven-plugin.git</connection>
<developerConnection>scm:git:https://github.com/antonio-petricca/filemerger-maven-plugin.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/antonio-petricca/filemerger-maven-plugin</url>
</scm>
<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>
<name>Antonio Petricca</name>
<email>antonio.petricca@gmail.com</email>
<url>https://www.linkedin.com/in/antoniopetricca/</url>
</developer>
</developers>
<groupId>io.github.antonio-petricca</groupId>
<artifactId>filemerger-maven-plugin</artifactId>
<version>1.6.0</version>
<packaging>maven-plugin</packaging>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.6.3</version> <!-- Pinned -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-filtering</artifactId>
<version>3.3.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.13.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.13.1</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>deploy</id>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.8.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<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-gpg-plugin</artifactId>
<version>3.2.3</version>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>