cs-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.miracelwhipp.net.cs.plugin</groupId> <artifactId>cs-maven-plugin</artifactId> <version>2.1.3</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>io.github.miracelwhipp.net</groupId> <artifactId>net-cs-maven</artifactId> <version>2.1.3</version> </parent> <groupId>io.github.miracelwhipp.net.cs.plugin</groupId> <artifactId>cs-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <dependencies> <dependency> <groupId>io.github.miracelwhipp.net.common</groupId> <artifactId>net-common</artifactId> </dependency> <dependency> <groupId>io.github.miracelwhipp.net.provider</groupId> <artifactId>net-framework-provider-api</artifactId> </dependency> <dependency> <groupId>io.github.miracelwhipp.net.nuget.plugin</groupId> <artifactId>nuget-maven-plugin</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-provider-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-http</artifactId> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-util</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> </dependencies> <build> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> <targetPath>${project.build.outputDirectory}</targetPath> </resource> <resource> <directory>${project.basedir}/src/main/filtered-resources</directory> <targetPath>${project.build.directory}/filter</targetPath> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.4</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>generated-helpmojo</id> <goals> <goal>helpmojo</goal> </goals> </execution> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-metadata</artifactId> <version>1.5.5</version> <executions> <execution> <id>process-classes</id> <goals> <goal>generate-metadata</goal> <goal>merge-metadata</goal> </goals> <configuration> <descriptors> <descriptor>${project.build.directory}/filter/META-INF/plexus/components.xml </descriptor> <descriptor>${project.build.outputDirectory}/META-INF/plexus/components.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>process-test-classes</id> <goals> <goal>generate-test-metadata</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>