goatrodeo_3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.spicelabs</groupId> <artifactId>goatrodeo_3</artifactId> <version>0.8.2</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.spicelabs</groupId> <artifactId>goatrodeo_3</artifactId> <version>0.8.2</version> <packaging>jar</packaging> <name>GoatRodeo</name> <description>Static analysis toolkit for unpacking artifacts</description> <url>https://github.com/spice-labs-inc/goatrodeo</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/spice-labs-inc/goatrodeo</url> <connection>scm:git:git://github.com/spice-labs-inc/goatrodeo.git</connection> <developerConnection>scm:git:ssh://github.com/spice-labs-inc/goatrodeo.git</developerConnection> <tag>HEAD</tag> </scm> <developers> <developer> <id>spicelabs</id> <name>Spice Labs</name> <email>engineering@spicelabs.io</email> </developer> </developers> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <checksums>all</checksums> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-fat-jar</id> <phase>initialize</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${project.basedir}/target/goatrodeo_3-${project.version}-fat.jar</file> <type>jar</type> <classifier>fat</classifier> </artifact> <artifact> <file>${project.basedir}/target/goatrodeo_3-${project.version}-sources.jar</file> <type>jar</type> <classifier>sources</classifier> </artifact> <artifact> <file>${project.basedir}/target/goatrodeo_3-${project.version}-javadoc.jar</file> <type>jar</type> <classifier>javadoc</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> <passphrase>${env.GPG_PASSPHRASE}</passphrase> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.1</version> <configuration> <generatePom>false</generatePom> <pomFile>${project.basedir}/target/goatrodeo_3-${project.version}.pom</pomFile> </configuration> </plugin> </plugins> </build> </project>