write-text-files-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.yaal.maven</groupId> <artifactId>write-text-files-maven-plugin</artifactId> <version>1.1</version> </dependency>
<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"> <groupId>ru.yaal.maven</groupId> <artifactId>write-text-files-maven-plugin</artifactId> <version>1.1</version> <packaging>maven-plugin</packaging> <name>Write Text Files Maven Plugin</name> <description>Create text file with content from pom.xml (it's possible use maven properties)</description> <inceptionYear>2015</inceptionYear> <url>git@github.com:Aleks-Ya/write-text-files-maven-plugin.git</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.version>3.3.3</maven.version> <maven-plugin-annotation.version>3.4</maven-plugin-annotation.version> </properties> <developers> <developer> <id>yaal</id> <name>Yablokov Aleksey</name> <email>ya_al@bk.ru</email> <timezone>+3</timezone> </developer> </developers> <prerequisites> <maven>${maven.version}</maven> </prerequisites> <issueManagement> <system>GitHub</system> <url>https://github.com/Aleks-Ya/write-text-files-maven-plugin/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:Aleks-Ya/write-text-files-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:Aleks-Ya/write-text-files-maven-plugin.git</developerConnection> <url>git@github.com:Aleks-Ya/write-text-files-maven-plugin.git</url> <tag>v1.1</tag> </scm> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.version}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven-plugin-annotation.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.4</version> <executions> <execution> <id>default-descriptor</id> <phase>process-classes</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <configuration> <failOnError>false</failOnError> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <scmCommentPrefix>[maven-release-plugin]-</scmCommentPrefix> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <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> <modelVersion>4.0.0</modelVersion> </project>