You can download akuma-1.10.jar in this page.
MIT license
akuma-1.10.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.kohsuke/akuma/pom.properties META-INF/maven/org.kohsuke/akuma/pom.xml com.sun.akuma.CLibrary.class com.sun.akuma.Daemon.class com.sun.akuma.EchoServer.class com.sun.akuma.JavaVMArguments.class com.sun.akuma.NetworkServer.class
akuma-1.10.pom file content.
<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> <parent> <groupId>org.kohsuke</groupId> <artifactId>pom</artifactId> <version>2</version> </parent> <artifactId>akuma</artifactId> <version>1.10</version> <name>Embeddable daemonization library</name> <scm> <connection>scm:git:git@github.com/kohsuke/${project.artifactId}.git</connection> <developerConnection>scm:git:ssh://git@github.com/kohsuke/${project.artifactId}.git</developerConnection> <url>http://${project.artifactId}.kohsuke.org/</url> </scm> <distributionManagement> <site> <id>github-pages</id> <url>gitsite:git@github.com/kohsuke/${project.artifactId}.git</url> </site> </distributionManagement> <build> <plugins> <plugin><!-- create uberjar for easy testing --> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <goals> <goal>attached</goal> </goals> <phase>package</phase> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>com.sun.akuma.EchoServer</mainClass> </manifest> </archive> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>4.1.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-jxr-plugin</artifactId> </plugin> </plugins> </reporting> <licenses> <license> <name>MIT license</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> </project>
<dependency> <groupId>org.kohsuke</groupId> <artifactId>akuma</artifactId> <version>1.10</version> </dependency>
If you think the following akuma-1.10.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.