bitecodefilter-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.irenical.bit</groupId>
<artifactId>bitecodefilter-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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.irenical.maven</groupId>
<artifactId>parent-root</artifactId>
<version>1.8.2</version>
</parent>
<groupId>org.irenical.bit</groupId>
<artifactId>bitecodefilter-maven-plugin</artifactId>
<version>1.0.0</version>
<name>Maven bytecode filter plugin</name>
<description>Maven plugin that runs allows you to change .class files</description>
<packaging>maven-plugin</packaging>
<scm>
<connection>scm:git:git@github.com:irenical/maven-bit.git</connection>
<developerConnection>scm:git:git@github.com:irenical/maven-bit.git</developerConnection>
<url>git@github.com:irenical/maven-bit.git</url>
</scm>
<developers>
<developer>
<name>Tiago Simão</name>
<email>tiagosimao@gmail.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0.11</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.2</version>
<configuration>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<executions>
<execution>
<id>mojo-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>