2015-03-29 10:53:17 +00:00
|
|
|
<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>com.sun.winsw</groupId>
|
|
|
|
<artifactId>winsw</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2015-08-23 08:49:26 +00:00
|
|
|
<version>1.19-SNAPSHOT</version>
|
2015-03-29 10:53:17 +00:00
|
|
|
<name>Windows service wrapper</name>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>maven.jenkins-ci.org</id>
|
|
|
|
<url>http://maven.jenkins-ci.org:8081/content/repositories/releases</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:ssh://github.com/kohsuke/winsw.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/kohsuke/winsw.git</developerConnection>
|
|
|
|
<url>https://github.com/kohsuke/winsw</url>
|
2015-08-23 08:49:26 +00:00
|
|
|
<tag>HEAD</tag>
|
2015-03-29 10:53:17 +00:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- fake out maven and install the binary artifact -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
|
|
|
|
<artifactId>maven-antrun-extended-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<attachArtifact file="bin/Release/winsw.exe" type="exe" classifier="bin" />
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<extensions>
|
|
|
|
<extension>
|
|
|
|
<groupId>org.jvnet.wagon-svn</groupId>
|
|
|
|
<artifactId>wagon-svn</artifactId>
|
|
|
|
<version>1.9</version>
|
|
|
|
</extension>
|
|
|
|
</extensions>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The MIT license</name>
|
|
|
|
<url>http://www.opensource.org/licenses/mit-license.php</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>maven2-repository.dev.java.net</id>
|
|
|
|
<name>Java.net Repository for Maven</name>
|
|
|
|
<url>http://download.java.net/maven/2/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>maven2-repository.dev.java.net</id>
|
|
|
|
<name>Java.net Repository for Maven</name>
|
|
|
|
<url>http://download.java.net/maven/2/</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
</project>
|