pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.scytl</groupId>
  6. <artifactId>maven-generic-conf</artifactId>
  7. <version>1.5.6</version>
  8. </parent>
  9. <groupId>com.scytl.products.oscore</groupId>
  10. <artifactId>logging</artifactId>
  11. <version>1.4.2</version>
  12. <packaging>pom</packaging>
  13. <name>Logging Module</name>
  14. <scm>
  15. <connection>scm:git:ssh://git@scm.scytl.net:7999/comp/online-voting-logging.git</connection>
  16. <developerConnection>scm:git:ssh://git@scm.scytl.net:7999/comp/online-voting-logging.git</developerConnection>
  17. <url>https://scm.scytl.net/stash/projects/COMP/repos/online-voting-logging/browse</url>
  18. <tag>HEAD</tag>
  19. </scm>
  20. <properties>
  21. <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
  22. <source.version>1.8</source.version>
  23. <target.version>1.8</target.version>
  24. <javaee.version>6.0-6</javaee.version>
  25. <tomee.version>1.7.1</tomee.version>
  26. <junit.version>4.11</junit.version>
  27. <log4j2.version>2.2</log4j2.version>
  28. <log4j.version>1.2.17</log4j.version>
  29. <secure.logger.version>5.1.2</secure.logger.version>
  30. <slf4j.version>1.7.7</slf4j.version>
  31. </properties>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-compiler-plugin</artifactId>
  37. <version>3.1</version>
  38. <configuration>
  39. <source>${source.version}</source>
  40. <target>${target.version}</target>
  41. <cc>${project.build.outputDirectory}</cc>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <groupId>org.jacoco</groupId>
  46. <artifactId>jacoco-maven-plugin</artifactId>
  47. <version>0.7.4.201502262128</version>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-surefire-plugin</artifactId>
  52. <version>2.18.1</version>
  53. <configuration>
  54. <systemPropertyVariables>
  55. <propertyName>org.apache.deltaspike.ProjectStage</propertyName>
  56. <buildDirectory>IntegrationTest</buildDirectory>
  57. </systemPropertyVariables>
  58. </configuration>
  59. </plugin>
  60. <plugin>
  61. <artifactId>maven-release-plugin</artifactId>
  62. <version>2.5.1</version>
  63. <configuration>
  64. <arguments>-Drelease</arguments>
  65. <preparationGoals>clean verify</preparationGoals>
  66. <checkModificationExcludes>
  67. <checkModificationExclude>.Xauthority-*</checkModificationExclude>
  68. </checkModificationExcludes>
  69. <goals>deploy</goals>
  70. </configuration>
  71. <dependencies>
  72. <dependency>
  73. <groupId>org.apache.maven.scm</groupId>
  74. <artifactId>maven-scm-provider-gitexe</artifactId>
  75. <version>1.8.1</version>
  76. </dependency>
  77. </dependencies>
  78. </plugin>
  79. <plugin>
  80. <groupId>com.mycila.maven-license-plugin</groupId>
  81. <artifactId>maven-license-plugin</artifactId>
  82. <version>1.9.0</version>
  83. <configuration>
  84. <headerDefinitions>
  85. <headerDefinition>licensePattern.xml</headerDefinition>
  86. </headerDefinitions>
  87. <mapping>
  88. <javadoc_style>JAVADOC_STYLE</javadoc_style>
  89. </mapping>
  90. <header>${basedir}/LICENSE</header>
  91. <includes>
  92. <include>**/*.java</include>
  93. <include>**/*.xml</include>
  94. <include>**/*.properties</include>
  95. <include>**/*.js</include>
  96. </includes>
  97. <excludes>
  98. <exclude>**/.*/**</exclude>
  99. <exclude>target/**</exclude>
  100. <exclude>bower_components/**</exclude>
  101. <exclude>build/**</exclude>
  102. <exclude>dist/**</exclude>
  103. <exclude>node_modules/**</exclude>
  104. <exclude>release/**</exclude>
  105. </excludes>
  106. <properties>
  107. <currentYear>2018</currentYear>
  108. </properties>
  109. <useDefaultExcludes>true</useDefaultExcludes>
  110. <strictCheck>true</strictCheck>
  111. </configuration>
  112. <executions>
  113. <execution>
  114. <goals>
  115. <goal>check</goal>
  116. </goals>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. <dependencyManagement>
  123. <dependencies>
  124. <dependency>
  125. <groupId>log4j</groupId>
  126. <artifactId>log4j</artifactId>
  127. <version>${log4j.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.scytl.slogger</groupId>
  131. <artifactId>logger</artifactId>
  132. <version>${secure.logger.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.bouncycastle</groupId>
  136. <artifactId>bcprov-jdk15on</artifactId>
  137. <version>1.59</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.slf4j</groupId>
  141. <artifactId>slf4j-api</artifactId>
  142. <version>${slf4j.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.slf4j</groupId>
  146. <artifactId>slf4j-log4j12</artifactId>
  147. <version>${slf4j.version}</version>
  148. </dependency>
  149. </dependencies>
  150. </dependencyManagement>
  151. <dependencies>
  152. <dependency>
  153. <groupId>junit</groupId>
  154. <artifactId>junit</artifactId>
  155. <version>${junit.version}</version>
  156. <scope>test</scope>
  157. </dependency>
  158. </dependencies>
  159. <modules>
  160. <module>logging-api</module>
  161. <module>logging-core</module>
  162. </modules>
  163. </project>