hype-run
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.spotify</groupId>
<artifactId>hype-run</artifactId>
<version>0.0.18</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/maven-v4_0_0.xsd">
<parent>
<artifactId>hype-root</artifactId>
<groupId>com.spotify</groupId>
<version>0.0.18</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>hype-run</artifactId>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>org.scala-lang:scala-library</exclude>
</excludes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.esotericsoftware</pattern>
<shadedPattern>shaded.com.esotericsoftware</shadedPattern>
</relocation>
<relocation>
<pattern>org.objenesis</pattern>
<shadedPattern>shaded.org.objenesis</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.chrisdchristo</groupId>
<artifactId>capsule-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
<configuration>
<appClass>com.spotify.hype.stub.ContinuationEntryPoint</appClass>
<caplets>com.spotify:hype-caplet:${project.version}</caplets>
<includeApp>true</includeApp>
<resolveSystemDep>true</resolveSystemDep>
<modes>
<mode>
<name>noop</name>
<manifest>
<entry>
<key>Application-Class</key>
<value>com.spotify.hype.stub.Noop</value>
</entry>
</manifest>
</mode>
</modes>
<manifest>
<entry>
<key>Allow-Snapshots</key>
<value>true</value>
</entry>
<entry>
<key>Repositories</key>
<value>central local</value>
</entry>
</manifest>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>logback-core</artifactId>
<groupId>ch.qos.logback</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>