pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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</artifactId>
  6. <version>0.54</version>
  7. <packaging>jar</packaging>
  8. <name>assira</name>
  9. <url>http://ranides.net/projects/assira</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <netbeans.hint.license>WTFPL</netbeans.hint.license>
  13. </properties>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-pmd-plugin</artifactId>
  19. <version>2.7.1</version>
  20. <configuration>
  21. <rulesets>
  22. <ruleset>http://ranides.net/projects/pmd/assira.custom.xml</ruleset>
  23. <ruleset>http://ranides.net/projects/pmd/assira.standard.xml</ruleset>
  24. </rulesets>
  25. </configuration>
  26. </plugin>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <version>2.3.2</version>
  31. <configuration>
  32. <source>1.6</source>
  33. <target>1.6</target>
  34. <compilerArgument>-Xlint:unchecked</compilerArgument>
  35. <compilerArgument>-proc:none</compilerArgument>
  36. </configuration>
  37. </plugin>
  38. <plugin>
  39. <groupId>org.codehaus.mojo</groupId>
  40. <artifactId>cobertura-maven-plugin</artifactId>
  41. <version>2.5.2</version>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-javadoc-plugin</artifactId>
  46. <version>2.9</version>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-source-plugin</artifactId>
  51. <version>2.2.1</version>
  52. <executions>
  53. <execution>
  54. <id>attach-sources</id>
  55. <phase>verify</phase>
  56. <goals>
  57. <goal>jar</goal>
  58. </goals>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. <!-- Pamięć dla LFSRTest -->
  63. <!-- <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-surefire-plugin</artifactId>
  66. <version>2.13</version>
  67. <configuration>
  68. <forkMode>pertest</forkMode>
  69. <argLine>-Xms512m -Xmx512m</argLine>
  70. <testFailureIgnore>false</testFailureIgnore>
  71. <skip>false</skip>
  72. </configuration>
  73. </plugin>-->
  74. </plugins>
  75. </build>
  76. <reporting>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-javadoc-plugin</artifactId>
  81. <version>2.9</version>
  82. </plugin>
  83. </plugins>
  84. </reporting>
  85. <dependencies>
  86. <dependency>
  87. <groupId>log4j</groupId>
  88. <artifactId>log4j</artifactId>
  89. <version>1.2.16</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>commons-collections</groupId>
  93. <artifactId>commons-collections</artifactId>
  94. <version>3.2.1</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>junit</groupId>
  98. <artifactId>junit</artifactId>
  99. <version>4.10</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-lang3</artifactId>
  105. <version>3.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.fasterxml.jackson.core</groupId>
  109. <artifactId>jackson-core</artifactId>
  110. <version>2.0.1</version>
  111. <type>jar</type>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.fasterxml.jackson.datatype</groupId>
  115. <artifactId>jackson-datatype-json-org</artifactId>
  116. <version>2.0.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.google.caliper</groupId>
  120. <artifactId>caliper</artifactId>
  121. <version>1.0L</version>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>net.ranides</groupId>
  126. <artifactId>assira.asm</artifactId>
  127. <version>4.1</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>findbugs</groupId>
  131. <artifactId>annotations</artifactId>
  132. <version>1.0.0</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>eu.vitaliy</groupId>
  136. <artifactId>mazovia-charset</artifactId>
  137. <version>1.0</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>joda-time</groupId>
  141. <artifactId>joda-time</artifactId>
  142. <version>2.1</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>cglib</groupId>
  146. <artifactId>cglib</artifactId>
  147. <version>2.2.2</version>
  148. </dependency>
  149. </dependencies>
  150. </project>