pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.scytl.cryptolib</groupId>
  5. <artifactId>cryptolib</artifactId>
  6. <version>2.1.5-4</version>
  7. </parent>
  8. <artifactId>cryptolib-default-policies</artifactId>
  9. <name>Default Policies</name>
  10. <description>
  11. This module contains default policies. Resources should be useful
  12. for any other modules and new projects that use cryptolib.
  13. </description>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-jar-plugin</artifactId>
  19. <executions>
  20. <execution>
  21. <goals>
  22. <goal>test-jar</goal>
  23. </goals>
  24. </execution>
  25. </executions>
  26. </plugin>
  27. </plugins>
  28. <resources>
  29. <resource>
  30. <directory>src/main/resources</directory>
  31. <filtering>true</filtering>
  32. </resource>
  33. </resources>
  34. </build>
  35. </project>