| 组织ID: |
org.jvnet.winp |
| 项目ID: |
winp |
| 版本: |
1.27 |
| 最后修改时间: |
2018-08-02 14:42:16 |
| 包类型: |
jar |
| 标题: |
winp |
| 描述: |
Kill process tree in Windows |
| 相关URL: |
http://${project.artifactId}.kohsuke.org/ |
| 大小: |
141.40KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.jvnet.winp</groupId>
<artifactId>winp</artifactId>
<version>1.27</version>
</dependency>
|
| Gradle引入代码: |
org.jvnet.winp:winp:1.27
|
| 下载Jar包: |
|
| POM文件内容: |
<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>17</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jvnet.winp</groupId>
<artifactId>winp</artifactId>
<version>1.27</version>
<name>winp</name>
<description>Kill process tree in Windows</description>
<properties>
<findbugs-maven-plugin.version>3.0.4</findbugs-maven-plugin.version>
<findbugs.failOnError>true</findbugs.failOnError>
</properties>
<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>winp-1.27</tag>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<mainClass>org.jvnet.winp.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<argLine>-XX:+CreateMinidumpOnCrash</argLine>
<trimStackTrace>false</trimStackTrace>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs-maven-plugin.version}</version>
<configuration>
<effort>Max</effort>
<!--TODO: a couple of safe issues, so default to medium for a while <threshold>Low</threshold>-->
<xmlOutput>true</xmlOutput>
<findbugsXmlOutput>false</findbugsXmlOutput>
</configuration>
<executions>
<execution>
<id>findbugs</id>
<goals>
<goal>check</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<releaseProfiles>release</releaseProfiles>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>3.0.0</version>
<scope>provided</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>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.jvnet.winp.ExitWindows$Flag.class
org.jvnet.winp.WinProcess$2$1.class
org.jvnet.winp.ExitWindows.class
org.jvnet.winp.WinProcess$1.class
org.jvnet.winp.WinProcess$2.class
sendctrlc.exe
org.jvnet.winp.Main.class
org.jvnet.winp.WinProcess.class
sendctrlc.x64.exe
org.jvnet.winp.Native.class
org.jvnet.winp.WinpException.class
winp.x64.dll
org.jvnet.winp.UserErrorType.class
winp.dll
org.jvnet.winp.NotWindowsException.class
org.jvnet.winp.Priority.class
META-INF/maven/org.jvnet.winp/winp/pom.xml
META-INF/maven/org.jvnet.winp/winp/pom.properties
|
| 依赖Jar: |
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
annotations-3.0.0.jar
/com.google.code.findbugs/annotations/3.0.0
查看annotations所有版本文件
|