You can download zt-exec-1.9.jar in this page.
The Apache Software License, Version 2.0
zt-exec-1.9.jar file has the following types.
META-INF/MANIFEST.MF org.zeroturnaround.exec.InvalidExitUtil.class org.zeroturnaround.exec.InvalidExitValueException.class org.zeroturnaround.exec.InvalidOutputException.class org.zeroturnaround.exec.InvalidResultException.class org.zeroturnaround.exec.MessageLogger.class org.zeroturnaround.exec.MessageLoggers.class org.zeroturnaround.exec.ProcessAttributes.class org.zeroturnaround.exec.ProcessExecutor.class org.zeroturnaround.exec.ProcessInitException.class org.zeroturnaround.exec.ProcessOutput.class org.zeroturnaround.exec.ProcessResult.class org.zeroturnaround.exec.StartedProcess.class org.zeroturnaround.exec.WaitForProcess.class org.zeroturnaround.exec.close.ExceptionUtil.class org.zeroturnaround.exec.close.ProcessCloser.class org.zeroturnaround.exec.close.StandardProcessCloser.class org.zeroturnaround.exec.close.TimeoutProcessCloser.class org.zeroturnaround.exec.listener.CompositeProcessListener.class org.zeroturnaround.exec.listener.DestroyerListenerAdapter.class org.zeroturnaround.exec.listener.ProcessDestroyer.class org.zeroturnaround.exec.listener.ProcessListener.class org.zeroturnaround.exec.listener.ShutdownHookProcessDestroyer.class org.zeroturnaround.exec.stop.DestroyProcessStopper.class org.zeroturnaround.exec.stop.NopProcessStopper.class org.zeroturnaround.exec.stop.ProcessStopper.class org.zeroturnaround.exec.stream.CallerLoggerUtil.class org.zeroturnaround.exec.stream.ExecuteStreamHandler.class org.zeroturnaround.exec.stream.InputStreamPumper.class org.zeroturnaround.exec.stream.LogOutputStream.class org.zeroturnaround.exec.stream.PumpStreamHandler.class org.zeroturnaround.exec.stream.StreamPumper.class org.zeroturnaround.exec.stream.slf4j.Level.class org.zeroturnaround.exec.stream.slf4j.Slf4jDebugOutputStream.class org.zeroturnaround.exec.stream.slf4j.Slf4jErrorOutputStream.class org.zeroturnaround.exec.stream.slf4j.Slf4jInfoOutputStream.class org.zeroturnaround.exec.stream.slf4j.Slf4jOutputStream.class org.zeroturnaround.exec.stream.slf4j.Slf4jStream.class org.zeroturnaround.exec.stream.slf4j.Slf4jTraceOutputStream.class org.zeroturnaround.exec.stream.slf4j.Slf4jWarnOutputStream.class
zt-exec-1.9.pom file content.
<!-- Copyright (C) 2013 ZeroTurnaround <support@zeroturnaround.com> Contains fragments of code from Apache Commons Exec, rights owned by Apache Software Foundation (ASF). Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <modelVersion>4.0.0</modelVersion> <groupId>org.zeroturnaround</groupId> <artifactId>zt-exec</artifactId> <packaging>jar</packaging> <name>ZT Process Executor</name> <version>1.9</version> <scm> <connection>scm:git:git@github.com:zeroturnaround/zt-exec.git</connection> <url>scm:git:git@github.com:zeroturnaround/zt-exec.git</url> <developerConnection>scm:git:git@github.com:zeroturnaround/zt-exec.git</developerConnection> </scm> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype OSS Staging</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> <layout>default</layout> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype OSS Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <layout>default</layout> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </plugin> <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> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> <configuration> <tagBase>https://svn.apache.org/repos/asf/maven/components/releases</tagBase> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <organization> <name>ZeroTurnaround</name> <url>http://zeroturnaround.com/</url> </organization> <url>https://github.com/zeroturnaround/zt-exec</url> <description>A lightweight library to execute external processes from Java.</description> <developers> <developer> <id>rein</id> <name>Rein</name> <email>rein@zeroturnaround.com</email> <url>http://www.linkedin.com/in/reinra</url> <organization>ZeroTurnaround</organization> <organizationUrl>http://zeroturnaround.com</organizationUrl> </developer> <developer> <id>toomasr</id> <name>Toomas</name> <email>toomas@zeroturnaround.com</email> <url>http://www.linkedin.com/in/toomasr</url> <organization>ZeroTurnaround</organization> <organizationUrl>http://zeroturnaround.com</organizationUrl> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <comments>A business-friendly OSS license</comments> </license> </licenses> </project>
<dependency> <groupId>org.zeroturnaround</groupId> <artifactId>zt-exec</artifactId> <version>1.9</version> </dependency>
If you think the following zt-exec-1.9.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.