pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0"?>
  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/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>secure-logger</artifactId>
  7. <groupId>com.scytl.slogger</groupId>
  8. <version>5.1.2</version>
  9. </parent>
  10. <artifactId>logger</artifactId>
  11. <name>Logger</name>
  12. <description>A logger based in log4j using hmac and signature verification.</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.scytl.cryptolib</groupId>
  16. <artifactId>cryptolib-api-asymmetric</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.scytl.cryptolib</groupId>
  20. <artifactId>cryptolib-asymmetric</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.scytl.cryptolib</groupId>
  24. <artifactId>cryptolib-api-commons</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.scytl.cryptolib</groupId>
  28. <artifactId>cryptolib-commons</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.scytl.cryptolib</groupId>
  32. <artifactId>cryptolib-default-policies</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.scytl.cryptolib</groupId>
  36. <artifactId>cryptolib-api-stores</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.scytl.cryptolib</groupId>
  40. <artifactId>cryptolib-stores</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.scytl.cryptolib</groupId>
  44. <artifactId>cryptolib-api-symmetric</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.scytl.cryptolib</groupId>
  48. <artifactId>cryptolib-symmetric</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.bouncycastle</groupId>
  52. <artifactId>bcprov-jdk15on</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>log4j</groupId>
  57. <artifactId>log4j</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>junit</groupId>
  61. <artifactId>junit</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.mockito</groupId>
  65. <artifactId>mockito-core</artifactId>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <pluginManagement>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-checkstyle-plugin</artifactId>
  74. <configuration>
  75. <violationIgnore>AbbreviationAsWordInName</violationIgnore>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </pluginManagement>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-checkstyle-plugin</artifactId>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.jacoco</groupId>
  87. <artifactId>jacoco-maven-plugin</artifactId>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-jar-plugin</artifactId>
  92. <executions>
  93. <execution>
  94. <id>test-jar</id>
  95. <phase>package</phase>
  96. <goals>
  97. <goal>test-jar</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>