specialsource-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.md-5</groupId> <artifactId>specialsource-maven-plugin</artifactId> <version>2.0.4</version> </dependency>
<?xml version="1.0"?> <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>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>net.md-5</groupId> <artifactId>specialsource-maven-plugin</artifactId> <version>2.0.4</version> <packaging>maven-plugin</packaging> <name>SpecialSourceMP</name> <scm> <connection>scm:git:git@github.com:agaricusb/SpecialSourceMP.git</connection> <developerConnection>scm:git:git@github.com:agaricusb/SpecialSourceMP.git</developerConnection> <url>git@github.com:agaricusb/SpecialSourceMP.git</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/agaricusb/SpecialSourceMP/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <mavenPluginVersion>3.5</mavenPluginVersion> <mavenVersion>3.2.5</mavenVersion> </properties> <dependencies> <dependency> <groupId>net.md-5</groupId> <artifactId>SpecialSource</artifactId> <version>1.11.5</version> <type>jar</type> <scope>compile</scope> </dependency> <!-- Maven --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${mavenVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${mavenVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${mavenPluginVersion}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${mavenPluginVersion}</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>io.github.zlika</groupId> <artifactId>reproducible-build-maven-plugin</artifactId> <version>0.8</version> <executions> <execution> <goals> <goal>strip-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>