activiti-dependency-check-6.1.0.pom 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.activiti</groupId>
  7. <artifactId>activiti-root</artifactId>
  8. <version>6.1.0</version>
  9. <relativePath>../..</relativePath>
  10. </parent>
  11. <groupId>org.activiti</groupId>
  12. <artifactId>activiti-dependency-check</artifactId>
  13. <packaging>pom</packaging>
  14. <name>Activiti - OWASP dependency-check configuration</name>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.codehaus.mojo</groupId>
  19. <artifactId>build-helper-maven-plugin</artifactId>
  20. <version>3.0.0</version>
  21. <executions>
  22. <execution>
  23. <id>attach-artifacts</id>
  24. <phase>package</phase>
  25. <goals>
  26. <goal>attach-artifact</goal>
  27. </goals>
  28. <configuration>
  29. <artifacts>
  30. <artifact>
  31. <file>${basedir}/dependency-check-suppression.xml</file>
  32. <type>xml</type>
  33. <classifier>suppression</classifier>
  34. </artifact>
  35. </artifacts>
  36. </configuration>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>