Download winp-1.22.jar file

Introduction

You can download winp-1.22.jar in this page.

License

The MIT license

Type List

winp-1.22.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jvnet.winp/winp/pom.properties
META-INF/maven/org.jvnet.winp/winp/pom.xml
org.jvnet.winp.ExitWindows.class
org.jvnet.winp.Main.class
org.jvnet.winp.Native.class
org.jvnet.winp.NotWindowsException.class
org.jvnet.winp.Priority.class
org.jvnet.winp.WinProcess.class
org.jvnet.winp.WinpException.class
winp.dll
winp.x64.dll

Pom

winp-1.22.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">
  <parent>
    <groupId>org.kohsuke</groupId>
    <artifactId>pom</artifactId>
    <version>10</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>org.jvnet.winp</groupId>
  <artifactId>winp</artifactId>
  <version>1.22</version>
  <name>winp</name>
  <description>Kill process tree in Windows</description>

  <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>
    <tag>HEAD</tag>
  </scm>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <mainClass>org.jvnet.winp.Main</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <skip>true</skip>
          <forkMode>never</forkMode>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <distributionManagement>
    <site>
      <id>github-pages</id>
      <url>gitsite:git@github.com/kohsuke/${project.artifactId}.git</url>
    </site>
  </distributionManagement>

  <licenses>
    <license>
      <name>The MIT license</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
</project>

POM Entry

<dependency>
   <groupId>org.jvnet.winp</groupId>
   <artifactId>winp</artifactId>
   <version>1.22</version>
</dependency>

Download

If you think the following winp-1.22.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download winp-1.22.jar file




PreviousNext

Related