bytecoder-mavenplugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.mirkosertic.bytecoder</groupId> <artifactId>bytecoder-mavenplugin</artifactId> <version>2024-05-10</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>de.mirkosertic.bytecoder</groupId> <artifactId>bytecoder-parent</artifactId> <version>2024-05-10</version> </parent> <artifactId>bytecoder-mavenplugin</artifactId> <packaging>maven-plugin</packaging> <name>Bytecoder Maven Plugin</name> <description>Bytecoder Maven Plugin</description> <prerequisites> <maven>3.5</maven> </prerequisites> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.10.2</version> <configuration> <goalPrefix>bytecoder</goalPrefix> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>default-descriptor</id> <goals> <goal>descriptor</goal> </goals> <configuration> <extractors> <extractor>java-annotations</extractor> </extractors> <mojoDependencies> <mojoDependency>de.mirkosertic.bytecoder:bytecoder-mavenplugin</mojoDependency> </mojoDependencies> </configuration> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> <configuration> <extractors> <extractor>java-annotations</extractor> </extractors> <mojoDependencies> <mojoDependency>de.mirkosertic.bytecoder:bytecoder-mavenplugin</mojoDependency> </mojoDependencies> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>bytecoder-core</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>[24.1.1,)</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <scope>provided</scope> <version>3.9.6</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <scope>provided</scope> <version>3.9.6</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.9.6</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> </exclusion> <exclusion> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> </exclusion> <exclusion> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.plexus</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.9.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.5.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-verifier</artifactId> <version>1.8.0</version> <scope>test</scope> </dependency> </dependencies> </project>