7
7
<name >Audit4j - Core</name >
8
8
<version >2.2.0</version >
9
9
<url >http://audit4j.org</url >
10
- <description >Audit4j - An open-source auditing framework for Java, Spring Integration </description >
10
+ <description >Audit4j - An open-source auditing framework for Java, Core </description >
11
11
<organization >
12
12
<name >Audit4j</name >
13
13
<url >http://audit4j.org</url >
89
89
<!-- or whatever version you use -->
90
90
<source >1.7</source >
91
91
<target >1.7</target >
92
+ <!-- [#2413] Make compiler warnings a bit more visible But don't fail
93
+ (yet) -->
94
+ <compilerArgs >
95
+ <arg >-Xlint:varargs</arg >
96
+ </compilerArgs >
92
97
</configuration >
93
98
</plugin >
94
99
<plugin >
131
136
<plugin >
132
137
<groupId >org.apache.maven.plugins</groupId >
133
138
<artifactId >maven-eclipse-plugin</artifactId >
139
+ <configuration >
140
+ <downloadSources >true</downloadSources >
141
+ <downloadJavadocs >true</downloadJavadocs >
142
+ </configuration >
134
143
</plugin >
135
144
<plugin >
136
145
<groupId >org.apache.maven.plugins</groupId >
151
160
</plugin >
152
161
</plugins >
153
162
</build >
163
+ <reporting >
164
+ <plugins >
165
+ <plugin >
166
+ <groupId >org.codehaus.mojo</groupId >
167
+ <artifactId >cobertura-maven-plugin</artifactId >
168
+ <version >2.6</version >
169
+ <configuration >
170
+ <instrumentation >
171
+ <ignores >
172
+ <ignore >org.audit4j.core.extra.*</ignore >
173
+ </ignores >
174
+ </instrumentation >
175
+ </configuration >
176
+ </plugin >
177
+ <plugin >
178
+ <groupId >org.codehaus.mojo</groupId >
179
+ <artifactId >findbugs-maven-plugin</artifactId >
180
+ <version >3.0.0</version >
181
+ <configuration >
182
+ <excludes >
183
+ <exclude >org.audit4j.core.extra.*</exclude >
184
+ </excludes >
185
+ </configuration >
186
+ </plugin >
187
+ <plugin >
188
+ <groupId >org.apache.maven.plugins</groupId >
189
+ <artifactId >maven-pmd-plugin</artifactId >
190
+ <version >3.4</version >
191
+ <configuration >
192
+ <linkXref >true</linkXref >
193
+ <sourceEncoding >utf-8</sourceEncoding >
194
+ <minimumTokens >100</minimumTokens >
195
+ <targetJdk >1.5</targetJdk >
196
+ <excludes >
197
+ <exclude >org.audit4j.core.extra.*</exclude >
198
+ </excludes >
199
+ </configuration >
200
+ </plugin >
201
+ <plugin >
202
+ <groupId >org.apache.maven.plugins</groupId >
203
+ <artifactId >maven-project-info-reports-plugin</artifactId >
204
+ <version >2.6</version >
205
+ <reportSets >
206
+ <reportSet >
207
+ <reports ><!-- select reports -->
208
+ <report >index</report >
209
+ </reports >
210
+ </reportSet >
211
+ </reportSets >
212
+ </plugin >
213
+ <plugin >
214
+ <groupId >org.apache.maven.plugins</groupId >
215
+ <artifactId >maven-javadoc-plugin</artifactId >
216
+ <version >2.9</version >
217
+ <configuration >
218
+ <excludePackageNames >org.audit4j.core.extra.*</excludePackageNames >
219
+ </configuration >
220
+ <reportSets >
221
+ <reportSet ><!-- by default, id = "default" -->
222
+ <reports ><!-- select non-aggregate reports -->
223
+ <report >javadoc</report >
224
+ <report >test-javadoc</report >
225
+ </reports >
226
+ </reportSet >
227
+ <reportSet ><!-- aggregate reportSet, to define in poms having modules -->
228
+ <id >aggregate</id >
229
+ <inherited >false</inherited ><!-- don't run aggregate in child modules -->
230
+ <reports >
231
+ <report >aggregate</report >
232
+ </reports >
233
+ </reportSet >
234
+ </reportSets >
235
+ </plugin >
236
+ </plugins >
237
+ </reporting >
154
238
</project >
0 commit comments