-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
51 lines (45 loc) · 1.76 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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.dtolabs.rundeck</groupId>
<artifactId>rundeck-pushalot-notification-plugin</artifactId>
<version>1.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<scm>
<url>https://github.com/kraynel/rundeck-pushalot-plugin</url>
<connection>scm:git:ssh://[email protected]/kraynel/rundeck-pushalot-plugin.git</connection>
<developerConnection>scm:git:ssh://[email protected]/kraynel/rundeck-pushalot-plugin.git</developerConnection>
</scm>
<name>rundeck-pushalot-notification-plugin</name>
<url>https://github.com/kraynel/rundeck-pushalot-plugin</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.rundeck</groupId>
<artifactId>rundeck-core</artifactId>
<version>1.6.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<archive>
<manifestEntries>
<Rundeck-Plugin-Classnames>org.rundeck.notification.PushalotNotification</Rundeck-Plugin-Classnames>
<Rundeck-Plugin-File-Version>${version}</Rundeck-Plugin-File-Version>
<Rundeck-Plugin-Version>1.1</Rundeck-Plugin-Version>
<Rundeck-Plugin-Archive>true</Rundeck-Plugin-Archive>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>