goatrodeo_3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.spicelabs</groupId> <artifactId>goatrodeo_3</artifactId> <version>0.13.0</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.13.0</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> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala3-library_3</artifactId> <version>3.7.2</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>toolkit_3</artifactId> <version>0.4.0</version> </dependency> <dependency> <groupId>org.scala-lang.modules</groupId> <artifactId>scala-xml_3</artifactId> <version>2.3.0</version> </dependency> <dependency> <groupId>org.apache.bcel</groupId> <artifactId>bcel</artifactId> <version>6.10.0</version> </dependency> <dependency> <groupId>com.github.scopt</groupId> <artifactId>scopt_3</artifactId> <version>4.1.0</version> </dependency> <dependency> <groupId>org.scalameta</groupId> <artifactId>munit_3</artifactId> <version>0.7.29</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.16.1</version> </dependency> <dependency> <groupId>io.bullet</groupId> <artifactId>borer-core_3</artifactId> <version>1.14.1</version> </dependency> <dependency> <groupId>io.bullet</groupId> <artifactId>borer-derivation_3</artifactId> <version>1.14.1</version> </dependency> <dependency> <groupId>com.palantir.isofilereader</groupId> <artifactId>isofilereader</artifactId> <version>0.6.1</version> </dependency> <dependency> <groupId>org.json4s</groupId> <artifactId>json4s-native_3</artifactId> <version>4.0.7</version> </dependency> <dependency> <groupId>com.github.luben</groupId> <artifactId>zstd-jni</artifactId> <version>1.5.6-4</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.27.1</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.15</version> </dependency> <dependency> <groupId>org.scala-lang.modules</groupId> <artifactId>scala-parallel-collections_3</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>com.typesafe.scala-logging</groupId> <artifactId>scala-logging_3</artifactId> <version>3.9.4</version> </dependency> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-core</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>com.github.package-url</groupId> <artifactId>packageurl-java</artifactId> <version>1.5.0</version> </dependency> <dependency> <groupId>org.tukaani</groupId> <artifactId>xz</artifactId> <version>1.10</version> </dependency> <dependency> <groupId>io.spicelabs</groupId> <artifactId>cilantro_3</artifactId> <version>0.1.17</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>inject-real-jar</id> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <!-- Copy the downloaded JAR (maven/target/goatrodeo_3-${version}.jar) over the empty one that Maven just created. --> <copy todir="${project.build.directory}/" overwrite="true" > <fileset dir="${project.build.directory}/external"/> </copy> </target> </configuration> </execution> </executions> </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> <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> </plugins> </build> </project>