file-rename-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.mfrey.maven.plugin</groupId> <artifactId>file-rename-maven-plugin</artifactId> <version>1.0.0</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"> <modelVersion>4.0.0</modelVersion> <groupId>ch.mfrey.maven.plugin</groupId> <artifactId>file-rename-maven-plugin</artifactId> <version>1.0.0</version> <packaging>maven-plugin</packaging> <name>File Rename Maven Plugin</name> <description>Simple Maven Plugin to rename complete file paths, based on several replacement definitions</description> <url>https://github.com/Antibrumm/file-rename-maven-plugin</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <prerequisites> <maven>3.2.0</maven> </prerequisites> <scm> <connection>scm:git:git@github.com:Antibrumm/file-rename-maven-plugin.git</connection> <url>https://github.com/Antibrumm/file-rename-maven-plugin.git</url> <developerConnection>scm:git:git@github.com:Antibrumm/file-rename-maven-plugin.git</developerConnection> </scm> <developers> <developer> <name>Martin Frey</name> <roles> <role>Project Admin</role> <role>Lead Developer</role> </roles> </developer> </developers> <issueManagement> <url>https://github.com/Antibrumm/file-rename-maven-plugin.git</url> </issueManagement> <properties> <java-version>1.5</java-version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <fork>true</fork> <source>${java-version}</source> <target>${java-version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.2</version> <executions> <execution> <id>default-descriptor</id> <goals> <goal>descriptor</goal> </goals> <phase>process-classes</phase> </execution> <execution> <id>help-descriptor</id> <goals> <goal>helpmojo</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> </plugins> </build> </project>