codestripper-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.sebivenlo</groupId> <artifactId>codestripper-maven-plugin</artifactId> <version>0.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.sebivenlo</groupId> <artifactId>informaticspom</artifactId> <version>1.4.1</version> </parent> <groupId>io.github.sebivenlo</groupId> <artifactId>codestripper-maven-plugin</artifactId> <version>0.3</version> <packaging>maven-plugin</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.release>17</java.release> <exec.mainClass>io.github.homberghp.codestripperplugin.CodeStripperMojo</exec.mainClass> <!--<maven.plugins.api.version>3.8.3</maven.plugins.api.version>--> </properties> <dependencies> <dependency> <groupId>io.github.sebivenlo</groupId> <artifactId>codestripper</artifactId> <version>0.3</version> </dependency> <dependency> <groupId>io.github.sebivenlo</groupId> <artifactId>loggerwrapper</artifactId> <version>0.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.9.6</version> <scope>provided</scope> <type>jar</type> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.11.0</version> <scope>provided</scope> <type>jar</type> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.9.6</version> <scope>provided</scope> <type>jar</type> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.11.0</version> </plugin> </plugins> </pluginManagement> </build> </project>