-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
220 lines (218 loc) · 7.92 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?xml version="1.0" encoding="UTF-8"?>
<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>org.rundeck-plugins</groupId>
<artifactId>rundeck-rudder-nodes-plugin</artifactId>
<version>2.3</version>
<name>Rundeck Rudder Node Plugin</name>
<url>http://rundeck.org</url>
<inceptionYear>2015</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<logback-version>1.1.2</logback-version>
<scala-maven-plugin-version>3.2.1</scala-maven-plugin-version>
<sbv>2.11</sbv>
<scala-version>${sbv}.7</scala-version>
<jodatime-version>2.3</jodatime-version>
<specs2-version>2.3.12</specs2-version>
<commons-codec-version>1.9</commons-codec-version>
<commons-lang-version>2.6</commons-lang-version>
<slf4j-version>1.7.7</slf4j-version>
<commons-io-version>2.4</commons-io-version>
<cglib-version>3.1</cglib-version>
<rundeck-version>3.3.18-20220118</rundeck-version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>${scala-maven-plugin-version}</version>
<executions>
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<scalaCompatVersion>${sbv}</scalaCompatVersion>
<args>
<arg>-target:jvm-1.7</arg>
<arg>-dependencyfile</arg>
<arg>${basedir}/.scala_dependencies</arg>
</args>
<jvmArgs>
<jvmArg>-server</jvmArg>
</jvmArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.2</version>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/jar.xml</descriptor>
</descriptors>
<archive>
<manifestEntries>
<Rundeck-Plugin-Version>1.1</Rundeck-Plugin-Version>
<Rundeck-Plugin-File-Version>0.1-SNAPSHOT</Rundeck-Plugin-File-Version>
<Rundeck-Plugin-Archive>true</Rundeck-Plugin-Archive>
<Rundeck-Plugin-Classnames>com.normation.rundeck.plugin.resources.rudder.RudderResourceModelSourceFactory</Rundeck-Plugin-Classnames>
<Rundeck-Plugin-Libs>lib/scala-library lib/scala-reflect lib/scala-xml_${sbv} lib/scala-parser-combinators_${sbv} lib/commons-net lib/jackson-core-asl lib/jackson-mapper-asl lib/rapture-core_${sbv} lib/rapture-codec_${sbv} lib/rapture-cryto_${sbv} lib/rapture-data_${sbv} lib/rapture-io_${sbv} lib/rapture-json_${sbv} lib/rapture-json-jackson_${sbv} lib/rapture-mime_${sbv} lib/rapture-net_${sbv} lib/rapture-uri_${sbv}</Rundeck-Plugin-Libs>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<versionRange>[0.1,)</versionRange>
<goals>
<goal>generate</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<versionRange>[0.1,)</versionRange>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</pluginExecutionFilter>
<action>
<configurator>
<id>org.maven.ide.eclipse.scala</id>
</configurator>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.rundeck</groupId>
<artifactId>rundeck-core</artifactId>
<version>${rundeck-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala-version}</version>
</dependency>
<dependency>
<groupId>com.propensive</groupId>
<artifactId>rapture-core_${sbv}</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.propensive</groupId>
<artifactId>rapture-io_${sbv}</artifactId>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>com.propensive</groupId>
<artifactId>rapture-uri_${sbv}</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.propensive</groupId>
<artifactId>rapture-net_${sbv}</artifactId>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>com.propensive</groupId>
<artifactId>rapture-json_${sbv}</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.propensive</groupId>
<artifactId>rapture-json-jackson_${sbv}</artifactId>
<version>1.0.0</version>
</dependency>
<!-- <dependency> -->
<!-- <groupId>org.apache.httpcomponents</groupId> -->
<!-- <artifactId>httpclient</artifactId> -->
<!-- <version>4.5</version> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>org.slf4j</groupId> -->
<!-- <artifactId>slf4j-nop</artifactId> -->
<!-- <version>${slf4j-version}</version> -->
<!-- <scope>compile</scope> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>com.amazonaws</groupId> -->
<!-- <artifactId>aws-java-sdk-ec2</artifactId> -->
<!-- <version>1.9.0</version> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>org.json4s</groupId> -->
<!-- <artifactId>json4s-native_${sbv}</artifactId> -->
<!-- <version>3.2.11</version> -->
<!-- </dependency> -->
</dependencies>
</project>