|
41 | 41 |
|
42 | 42 | <groupId>org.owasp.encoder</groupId> |
43 | 43 | <artifactId>encoder-parent</artifactId> |
44 | | - <version>1.2.2</version> |
| 44 | + <version>1.2.3</version> |
45 | 45 | <packaging>pom</packaging> |
46 | 46 |
|
47 | 47 | <name>OWASP Java Encoder Project</name> |
|
238 | 238 | <artifactId>maven-pmd-plugin</artifactId> |
239 | 239 | <version>3.6</version> |
240 | 240 | </plugin> |
| 241 | + <plugin> |
| 242 | + <groupId>org.apache.felix</groupId> |
| 243 | + <artifactId>maven-bundle-plugin</artifactId> |
| 244 | + <version>3.3.0</version> |
| 245 | + </plugin> |
241 | 246 | <plugin> |
242 | 247 | <groupId>org.codehaus.mojo</groupId> |
243 | 248 | <artifactId>versions-maven-plugin</artifactId> |
|
265 | 270 | <target>1.5</target> |
266 | 271 | </configuration> |
267 | 272 | </plugin> |
| 273 | + <plugin> |
| 274 | + <groupId>org.apache.felix</groupId> |
| 275 | + <artifactId>maven-bundle-plugin</artifactId> |
| 276 | + <executions> |
| 277 | + <execution> |
| 278 | + <id>default-bundle</id> |
| 279 | + <phase>process-classes</phase> |
| 280 | + <goals> |
| 281 | + <goal>manifest</goal> |
| 282 | + </goals> |
| 283 | + <configuration> |
| 284 | + <excludeDependencies>true</excludeDependencies> |
| 285 | + <instructions> |
| 286 | + <_noee>true</_noee> |
| 287 | + <_nouses>true</_nouses> |
| 288 | + </instructions> |
| 289 | + </configuration> |
| 290 | + </execution> |
| 291 | + </executions> |
| 292 | + </plugin> |
268 | 293 | <plugin> |
269 | 294 | <groupId>org.codehaus.mojo</groupId> |
270 | 295 | <artifactId>cobertura-maven-plugin</artifactId> |
|
297 | 322 | <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine> |
298 | 323 | </configuration> |
299 | 324 | </plugin> |
| 325 | + <plugin> |
| 326 | + <groupId>org.apache.maven.plugins</groupId> |
| 327 | + <artifactId>maven-jar-plugin</artifactId> |
| 328 | + <executions> |
| 329 | + <execution> |
| 330 | + <id>default-jar</id> |
| 331 | + <phase>package</phase> |
| 332 | + <goals> |
| 333 | + <goal>jar</goal> |
| 334 | + </goals> |
| 335 | + <configuration> |
| 336 | + <skipIfEmpty>true</skipIfEmpty> |
| 337 | + <archive> |
| 338 | + <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
| 339 | + </archive> |
| 340 | + </configuration> |
| 341 | + </execution> |
| 342 | + </executions> |
| 343 | + </plugin> |
300 | 344 | <plugin> |
301 | 345 | <groupId>org.apache.maven.plugins</groupId> |
302 | 346 | <artifactId>maven-source-plugin</artifactId> |
|
0 commit comments