5
5
<artifactId >audit4j-spring</artifactId >
6
6
<packaging >jar</packaging >
7
7
<name >Audit4j - Spring Integration</name >
8
- <version >2.4.0 </version >
8
+ <version >2.4.1-RC1 </version >
9
9
<url >http://audit4j.org</url >
10
10
<description >Audit4j - An open-source auditing framework for Java, Spring Integration</description >
11
+
11
12
<organization >
12
13
<name >Audit4j</name >
13
14
<url >http://audit4j.org</url >
14
15
</organization >
16
+
15
17
<licenses >
16
18
<license >
17
19
<name >The Apache Software License, Version 2.0</name >
18
20
<url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
19
21
<distribution >repo</distribution >
20
22
</license >
21
23
</licenses >
24
+
22
25
<issueManagement >
23
- <system >mantis </system >
24
- <url >http ://audit4j.org/bugs </url >
26
+ <system >github </system >
27
+ <url >https ://github.com/audit4j/audit4j-core/issues </url >
25
28
</issueManagement >
29
+
26
30
<scm >
27
31
<
connection >scm:git:
[email protected] :audit4j/audit4j-spring.git</
connection >
28
32
<
developerConnection >scm:git:
[email protected] :audit4j/audit4j-spring.git</
developerConnection >
29
33
<
url >scm:git:
[email protected] :audit4j/audit4j-spring.git</
url >
30
34
<tag >2.4.0</tag >
31
35
</scm >
36
+
32
37
<developers >
33
38
<developer >
34
39
<id >janith</id >
37
42
<organizationUrl >http://audit4j.org</organizationUrl >
38
43
39
44
<roles >
40
- <role >owner </role >
41
- <role >developer </role >
45
+ <role >Project Lead </role >
46
+ <role >Developer </role >
42
47
</roles >
43
48
<timezone >+05:30</timezone >
44
49
</developer >
45
50
</developers >
46
51
47
- <parent >
48
- <groupId >org.sonatype.oss</groupId >
49
- <artifactId >oss-parent</artifactId >
50
- <version >7</version >
51
- </parent >
52
-
53
52
<properties >
54
53
<junit .version>4.11</junit .version>
55
54
<audit4j .version>2.4.0</audit4j .version>
108
107
</dependencies >
109
108
110
109
110
+ <distributionManagement >
111
+ <repository >
112
+ <id >oss.sonatype.org</id >
113
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
114
+ </repository >
115
+ <snapshotRepository >
116
+ <id >oss.sonatype.org</id >
117
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
118
+ </snapshotRepository >
119
+ </distributionManagement >
120
+
111
121
<build >
112
122
<plugins >
113
123
<plugin >
116
126
<configuration >
117
127
<source >1.7</source >
118
128
<target >1.7</target >
129
+ <!-- [#2413] Make compiler warnings a bit more visible But don't fail
130
+ (yet) -->
131
+ <compilerArgs >
132
+ <arg >-Xlint:varargs</arg >
133
+ </compilerArgs >
119
134
</configuration >
120
135
</plugin >
121
136
<plugin >
122
137
<groupId >org.apache.maven.plugins</groupId >
123
- <artifactId >maven-javadoc-plugin</artifactId >
138
+ <artifactId >maven-source-plugin</artifactId >
139
+ <version >2.4</version >
124
140
<executions >
125
141
<execution >
126
- <id >attach-javadocs</id >
127
- <!-- Restrict execution of source compilation to install -->
128
- <phase >install</phase >
142
+ <id >attach-sources</id >
129
143
<goals >
130
144
<goal >jar</goal >
131
145
</goals >
134
148
</plugin >
135
149
<plugin >
136
150
<groupId >org.apache.maven.plugins</groupId >
137
- <artifactId >maven-source-plugin</artifactId >
151
+ <artifactId >maven-javadoc-plugin</artifactId >
152
+ <version >2.10.3</version >
153
+ <configuration >
154
+ <charset >${file_encoding} </charset >
155
+ <encoding >${file_encoding} </encoding >
156
+ </configuration >
138
157
<executions >
139
158
<execution >
140
- <phase >install</ phase >
159
+ <id >attach-javadocs</ id >
141
160
<goals >
142
161
<goal >jar</goal >
143
162
</goals >
163
+ <configuration >
164
+ <additionalparam >-Xdoclint:none</additionalparam >
165
+ </configuration >
144
166
</execution >
145
167
</executions >
146
168
</plugin >
147
169
<plugin >
148
170
<groupId >org.apache.maven.plugins</groupId >
149
- <artifactId >maven-release-plugin</artifactId >
150
- <version >2.5</version >
171
+ <artifactId >maven-jar-plugin</artifactId >
151
172
<configuration >
152
- <tagNameFormat >v@{project.version}</tagNameFormat >
173
+ <archive >
174
+ <manifest >
175
+ <addDefaultImplementationEntries >true</addDefaultImplementationEntries >
176
+ <addDefaultSpecificationEntries >true</addDefaultSpecificationEntries >
177
+ </manifest >
178
+ </archive >
153
179
</configuration >
154
180
</plugin >
155
181
<plugin >
156
- <groupId >org.apache.maven.plugins</groupId >
157
- <artifactId >maven-eclipse-plugin</artifactId >
182
+ <groupId >org.codehaus.mojo</groupId >
183
+ <artifactId >versions-maven-plugin</artifactId >
184
+ <version >2.2</version >
185
+ <configuration >
186
+ <generateBackupPoms >false</generateBackupPoms >
187
+ </configuration >
158
188
</plugin >
159
189
<plugin >
160
- <groupId >org.apache.maven.plugins</groupId >
161
- <artifactId >maven-surefire-plugin</artifactId >
190
+ <artifactId >maven-deploy-plugin</artifactId >
191
+ <version >2.8.2</version >
192
+ <configuration >
193
+ <skip >true</skip >
194
+ </configuration >
162
195
</plugin >
163
196
<plugin >
164
- <groupId >org.apache.maven.plugins</groupId >
165
- <artifactId >maven-gpg-plugin</artifactId >
197
+ <groupId >org.sonatype.plugins</groupId >
198
+ <artifactId >nexus-staging-maven-plugin</artifactId >
199
+ <version >1.6.5</version >
200
+ <extensions >true</extensions >
201
+ <configuration >
202
+ <serverId >oss.sonatype.org</serverId >
203
+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
204
+ <description >${project.version} </description >
205
+ </configuration >
166
206
<executions >
167
207
<execution >
168
- <id >sign-artifacts </id >
169
- <phase >verify </phase >
208
+ <id >deploy-to-sonatype </id >
209
+ <phase >deploy </phase >
170
210
<goals >
171
- <goal >sign</goal >
211
+ <goal >deploy</goal >
212
+ <goal >release</goal >
172
213
</goals >
173
214
</execution >
174
215
</executions >
175
216
</plugin >
217
+ <plugin >
218
+ <groupId >org.apache.maven.plugins</groupId >
219
+ <artifactId >maven-release-plugin</artifactId >
220
+ <version >2.3.2</version >
221
+ <configuration >
222
+ <tagNameFormat >@{project.version}</tagNameFormat >
223
+ </configuration >
224
+ </plugin >
225
+ <plugin >
226
+ <groupId >org.apache.maven.plugins</groupId >
227
+ <artifactId >maven-eclipse-plugin</artifactId >
228
+ <configuration >
229
+ <downloadSources >true</downloadSources >
230
+ <downloadJavadocs >true</downloadJavadocs >
231
+ </configuration >
232
+ </plugin >
233
+ <plugin >
234
+ <groupId >org.apache.maven.plugins</groupId >
235
+ <artifactId >maven-surefire-plugin</artifactId >
236
+ </plugin >
237
+
176
238
</plugins >
177
239
</build >
240
+
241
+ <!-- Execute this mvn -DperformRelease=true -->
242
+ <profiles >
243
+ <profile >
244
+ <id >release-sign-artifacts</id >
245
+ <activation >
246
+ <property >
247
+ <name >performRelease</name >
248
+ <value >true</value >
249
+ </property >
250
+ </activation >
251
+ <build >
252
+ <plugins >
253
+ <plugin >
254
+ <groupId >org.apache.maven.plugins</groupId >
255
+ <artifactId >maven-gpg-plugin</artifactId >
256
+ <version >1.6</version >
257
+ <executions >
258
+ <execution >
259
+ <id >sign-artifacts</id >
260
+ <phase >verify</phase >
261
+ <goals >
262
+ <goal >sign</goal >
263
+ </goals >
264
+ </execution >
265
+ </executions >
266
+ </plugin >
267
+ </plugins >
268
+ </build >
269
+ </profile >
270
+ </profiles >
271
+
272
+ <reporting >
273
+ <plugins >
274
+ <plugin >
275
+ <groupId >org.codehaus.mojo</groupId >
276
+ <artifactId >cobertura-maven-plugin</artifactId >
277
+ <version >2.6</version >
278
+ </plugin >
279
+ <plugin >
280
+ <groupId >org.codehaus.mojo</groupId >
281
+ <artifactId >findbugs-maven-plugin</artifactId >
282
+ <version >3.0.0</version >
283
+ </plugin >
284
+ <plugin >
285
+ <groupId >org.apache.maven.plugins</groupId >
286
+ <artifactId >maven-pmd-plugin</artifactId >
287
+ <version >3.4</version >
288
+ <configuration >
289
+ <linkXref >true</linkXref >
290
+ <sourceEncoding >utf-8</sourceEncoding >
291
+ <minimumTokens >100</minimumTokens >
292
+ <targetJdk >1.5</targetJdk >
293
+ </configuration >
294
+ </plugin >
295
+ <plugin >
296
+ <groupId >org.apache.maven.plugins</groupId >
297
+ <artifactId >maven-project-info-reports-plugin</artifactId >
298
+ <version >2.6</version >
299
+ <reportSets >
300
+ <reportSet >
301
+ <reports ><!-- select reports -->
302
+ <report >index</report >
303
+ </reports >
304
+ </reportSet >
305
+ </reportSets >
306
+ </plugin >
307
+ <plugin >
308
+ <groupId >org.apache.maven.plugins</groupId >
309
+ <artifactId >maven-javadoc-plugin</artifactId >
310
+ <version >2.9</version >
311
+ <reportSets >
312
+ <reportSet >
313
+ <reports >
314
+ <report >javadoc</report >
315
+ <report >test-javadoc</report >
316
+ </reports >
317
+ </reportSet >
318
+ <reportSet >
319
+ <id >aggregate</id >
320
+ <inherited >false</inherited >
321
+ <reports >
322
+ <report >aggregate</report >
323
+ </reports >
324
+ </reportSet >
325
+ </reportSets >
326
+ </plugin >
327
+ </plugins >
328
+ </reporting >
178
329
</project >
0 commit comments