pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>net.ranides</groupId>
  5. <artifactId>assira.common</artifactId>
  6. <version>2.0.1</version>
  7. <packaging>pom</packaging>
  8. <url>http://ranides.net/projects/assira</url>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <maven.compiler.source>1.8</maven.compiler.source>
  12. <maven.compiler.target>1.8</maven.compiler.target>
  13. <netbeans.hint.license>WTFPL</netbeans.hint.license>
  14. <project.argLine></project.argLine>
  15. <project.test.memory>512m</project.test.memory>
  16. <assira.junit.debug>false</assira.junit.debug>
  17. <org-netbeans-modules-editor-indent.CodeStyle.project.text-line-wrap>none</org-netbeans-modules-editor-indent.CodeStyle.project.text-line-wrap>
  18. <org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>4</org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>
  19. <org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>4</org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>
  20. <org-netbeans-modules-editor-indent.CodeStyle.project.tab-size>4</org-netbeans-modules-editor-indent.CodeStyle.project.tab-size>
  21. <org-netbeans-modules-editor-indent.CodeStyle.project.text-limit-width>120</org-netbeans-modules-editor-indent.CodeStyle.project.text-limit-width>
  22. <org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>true</org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>
  23. <org-netbeans-modules-editor-indent.CodeStyle.usedProfile>project</org-netbeans-modules-editor-indent.CodeStyle.usedProfile>
  24. </properties>
  25. <distributionManagement>
  26. <repository>
  27. <id>maven.ranides.net</id>
  28. <name>maven.ranides.net</name>
  29. <url>ftp://maven.ranides.net/</url>
  30. </repository>
  31. </distributionManagement>
  32. <repositories>
  33. <repository>
  34. <id>ranides.net</id>
  35. <name>ranides.net</name>
  36. <url>http://maven.ranides.net</url>
  37. </repository>
  38. </repositories>
  39. <build>
  40. <extensions>
  41. <extension>
  42. <groupId>org.apache.maven.wagon</groupId>
  43. <artifactId>wagon-ftp</artifactId>
  44. <version>1.0</version>
  45. </extension>
  46. </extensions>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <version>2.3.2</version>
  52. <configuration>
  53. <source>${maven.compiler.source}</source>
  54. <target>${maven.compiler.target}</target>
  55. <compilerArgument>-Xlint:unchecked</compilerArgument>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-source-plugin</artifactId>
  61. <version>2.2.1</version>
  62. <executions>
  63. <execution>
  64. <id>attach-sources</id>
  65. <goals>
  66. <goal>jar-no-fork</goal>
  67. </goals>
  68. </execution>
  69. </executions>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-javadoc-plugin</artifactId>
  74. <version>2.9</version>
  75. <executions>
  76. <execution>
  77. <id>javadocs-site</id>
  78. <phase>site</phase>
  79. <goals>
  80. <goal>javadoc</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. <configuration>
  85. <links>
  86. <link>http://docs.oracle.com/javase/7/docs/api/</link>
  87. </links>
  88. <version>true</version>
  89. <show>public</show>
  90. </configuration>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-pmd-plugin</artifactId>
  95. <version>3.5</version>
  96. <configuration>
  97. <rulesets>
  98. <ruleset>http://ranides.net/projects/pmd/3/assira.custom.xml</ruleset>
  99. <ruleset>http://ranides.net/projects/pmd/3/assira.standard.xml</ruleset>
  100. <!--
  101. <ruleset>http://dev.ranides.vnet/java/assira.custom.xml</ruleset>
  102. <ruleset>http://dev.ranides.vnet/java/assira.standard.xml</ruleset>
  103. -->
  104. </rulesets>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.jacoco</groupId>
  109. <artifactId>jacoco-maven-plugin</artifactId>
  110. <version>0.7.5.201505241946</version>
  111. <configuration>
  112. <propertyName>project.argLine</propertyName>
  113. </configuration>
  114. <executions>
  115. <execution>
  116. <goals>
  117. <goal>prepare-agent</goal>
  118. </goals>
  119. </execution>
  120. <execution>
  121. <id>report</id>
  122. <phase>prepare-package</phase>
  123. <goals>
  124. <goal>report</goal>
  125. </goals>
  126. </execution>
  127. </executions>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-surefire-plugin</artifactId>
  132. <version>2.18.1</version>
  133. <configuration>
  134. <argLine>-Dassira.junit.debug=@{assira.junit.debug} -Dfile.encoding=${project.build.sourceEncoding} @{project.argLine} -Xmx${project.test.memory}</argLine>
  135. <testFailureIgnore>false</testFailureIgnore>
  136. <skip>false</skip>
  137. </configuration>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-jxr-plugin</artifactId>
  142. <version>2.3</version>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. <reporting>
  147. <plugins>
  148. <plugin>
  149. <groupId>org.apache.maven.plugins</groupId>
  150. <artifactId>maven-javadoc-plugin</artifactId>
  151. <version>2.9</version>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-jxr-plugin</artifactId>
  156. <version>2.3</version>
  157. </plugin>
  158. </plugins>
  159. </reporting>
  160. <dependencyManagement>
  161. <dependencies>
  162. <dependency>
  163. <groupId>net.ranides</groupId>
  164. <artifactId>assira</artifactId>
  165. <version>2.0.1</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>net.ranides</groupId>
  169. <artifactId>assira.asm</artifactId>
  170. <version>5.0.4</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>net.ranides</groupId>
  174. <artifactId>assira.junit</artifactId>
  175. <version>2.0.1</version>
  176. <scope>test</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>junit</groupId>
  180. <artifactId>junit</artifactId>
  181. <version>4.12</version>
  182. <scope>test</scope>
  183. </dependency>
  184. <dependency>
  185. <groupId>net.ranides</groupId>
  186. <artifactId>caliper</artifactId>
  187. <version>1.0L</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.slf4j</groupId>
  191. <artifactId>slf4j-api</artifactId>
  192. <version>1.7.13</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.slf4j</groupId>
  196. <artifactId>slf4j-simple</artifactId>
  197. <version>1.7.13</version>
  198. <scope>test</scope>
  199. </dependency>
  200. <dependency>
  201. <groupId>net.sourceforge.pmd</groupId>
  202. <artifactId>pmd-java</artifactId>
  203. <version>5.3.3</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.google.code.findbugs</groupId>
  207. <artifactId>annotations</artifactId>
  208. <version>3.0.1u2</version>
  209. <scope>provided</scope>
  210. </dependency>
  211. </dependencies>
  212. </dependencyManagement>
  213. </project>