You can download helios-tools-0.8.0.jar in this page.
Open Source
helios-tools-0.8.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.spotify/helios-tools/pom.properties META-INF/maven/com.spotify/helios-tools/pom.xml com.spotify.helios.cli.CliConfig.class com.spotify.helios.cli.CliMain.class com.spotify.helios.cli.CliParser.class com.spotify.helios.cli.JobStatusTable.class com.spotify.helios.cli.Output.class com.spotify.helios.cli.Table.class com.spotify.helios.cli.Target.class com.spotify.helios.cli.Utils.class com.spotify.helios.cli.command.ControlCommand.class com.spotify.helios.cli.command.HostDeregisterCommand.class com.spotify.helios.cli.command.HostListCommand.class com.spotify.helios.cli.command.HostRegisterCommand.class com.spotify.helios.cli.command.HostResolver.class com.spotify.helios.cli.command.JobCreateCommand.class com.spotify.helios.cli.command.JobDeployCommand.class com.spotify.helios.cli.command.JobHistoryCommand.class com.spotify.helios.cli.command.JobInspectCommand.class com.spotify.helios.cli.command.JobListCommand.class com.spotify.helios.cli.command.JobRemoveCommand.class com.spotify.helios.cli.command.JobStartCommand.class com.spotify.helios.cli.command.JobStatusCommand.class com.spotify.helios.cli.command.JobStopCommand.class com.spotify.helios.cli.command.JobUndeployCommand.class com.spotify.helios.cli.command.JobWatchCommand.class com.spotify.helios.cli.command.MasterListCommand.class com.spotify.helios.cli.command.VersionCommand.class com.spotify.helios.cli.command.WildcardJobCommand.class logback.xml
helios-tools-0.8.0.pom file content.
<?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>com.spotify</groupId> <artifactId>helios-parent</artifactId> <version>0.8.0</version> </parent> <name>Helios Tools</name> <artifactId>helios-tools</artifactId> <packaging>jar</packaging> <dependencies> <!--compile deps--> <dependency> <groupId>com.spotify</groupId> <artifactId>helios-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.4.1</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>17.0</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>com.yammer.metrics</groupId> <artifactId>metrics-core</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.6</version> </dependency> <dependency> <groupId>net.sourceforge.argparse4j</groupId> <artifactId>argparse4j</artifactId> <version>0.4.1</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.1</version> </dependency> <!--test deps--> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.2</version> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <minimizeJar>true</minimizeJar> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>shaded</shadedClassifierName> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> <filter> <artifact>net.java.dev.jna</artifact> <includes> <include>com/sun/jna/**</include> </includes> </filter> </filters> <transformers> <!--The ServicesResourceTransformer is needed to make jersey happy--> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> </transformers> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>jdeb</artifactId> <groupId>org.vafer</groupId> <version>1.1.1</version> <executions> <!--helios--> <execution> <id>helios</id> <phase>package</phase> <goals> <goal>jdeb</goal> </goals> <configuration> <deb>${project.build.directory}/helios_${project.version}_all.deb</deb> <controlDir>${project.parent.basedir}/src/deb/helios</controlDir> <dataSet> <data> <src>${project.build.directory}/${project.build.finalName}-shaded.jar</src> <type>file</type> <mapper> <type>perm</type> <prefix>/usr/share/helios/lib/tools</prefix> </mapper> </data> <data> <src>${basedir}/../bin/helios</src> <type>file</type> <mapper> <type>perm</type> <prefix>/usr/bin/</prefix> <filemode>755</filemode> </mapper> </data> </dataSet> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.spotify</groupId> <artifactId>helios-tools</artifactId> <version>0.8.0</version> </dependency>
If you think the following helios-tools-0.8.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download helios-tools-0.8.0.jar file