forked from winsw/winsw
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·129 lines (121 loc) · 4.45 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<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>
<version>2.2.1-SNAPSHOT</version>
<name>Windows Service Wrapper (WinSW)</name>
<url>https://github.com/kohsuke/winsw/</url>
<properties>
<winsw.version>2.2.0</winsw.version>
</properties>
<licenses>
<license>
<name>The MIT license</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>oleg_nenashev</id>
<name>Oleg Nenashev</name>
<roles>
<role>Maintainer</role>
</roles>
<url>https://github.com/oleg-nenashev/</url>
</developer>
</developers>
<distributionManagement>
<repository>
<id>maven.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/releases/</url>
</repository>
</distributionManagement>
<ciManagement>
<system>AppVeyor</system>
<url>https://ci.appveyor.com/project/oleg-nenashev/winsw</url>
</ciManagement>
<scm>
<connection>scm:git:ssh://github.com/kohsuke/winsw.git</connection>
<developerConnection>scm:git:ssh://[email protected]/kohsuke/winsw.git</developerConnection>
<url>https://github.com/kohsuke/winsw</url>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<releaseProfiles>release-verify-winsw-version</releaseProfiles>
</configuration>
</plugin>
<plugin>
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
<artifactId>maven-antrun-extended-plugin</artifactId>
<version>1.43</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<mkdir dir="${project.build.directory}/bin/" />
<get src="https://github.com/kohsuke/winsw/releases/download/winsw-v${winsw.version}/WinSW.NET2.exe" dest="${project.build.directory}/bin/winsw.exe" />
<attachArtifact file="${project.build.directory}/bin/winsw.exe" type="exe" classifier="bin" />
<get src="https://github.com/kohsuke/winsw/releases/download/winsw-v${winsw.version}/WinSW.NET4.exe" dest="${project.build.directory}/bin/winsw4.exe" />
<attachArtifact file="${project.build.directory}/bin/winsw4.exe" type="exe" classifier="net4" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Ensures that the version of the released WinSW package equals to WinSW-->
<profiles>
<profile>
<id>release-verify-winsw-version</id>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
<artifactId>maven-antrun-extended-plugin</artifactId>
<version>1.43</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="maven.plugin.classpath" />
<if>
<not>
<equals arg1="${project.version}" arg2="${winsw.version}" />
</not>
<then>
<fail message="Project version ${project.version} is different from the WinSW version ${winsw.version}." />
</then>
</if>
</tasks>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>20020829</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>