pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. <!-- Pamięć dla LFSRTest -->
  39. <!-- <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-surefire-plugin</artifactId>
  42. <version>2.13</version>
  43. <configuration>
  44. <forkMode>pertest</forkMode>
  45. <argLine>-Xms512m -Xmx512m</argLine>
  46. <testFailureIgnore>false</testFailureIgnore>
  47. <skip>false</skip>
  48. </configuration>
  49. </plugin>-->
  50. </plugins>
  51. </build>
  52. <dependencies>
  53. <dependency>
  54. <groupId>log4j</groupId>
  55. <artifactId>log4j</artifactId>
  56. <version>1.2.16</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-collections</groupId>
  60. <artifactId>commons-collections</artifactId>
  61. <version>3.2.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>junit</groupId>
  65. <artifactId>junit</artifactId>
  66. <version>4.10</version>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-lang3</artifactId>
  72. <version>3.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.fasterxml.jackson.core</groupId>
  76. <artifactId>jackson-core</artifactId>
  77. <version>2.0.1</version>
  78. <type>jar</type>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.fasterxml.jackson.datatype</groupId>
  82. <artifactId>jackson-datatype-json-org</artifactId>
  83. <version>2.0.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.google.caliper</groupId>
  87. <artifactId>caliper</artifactId>
  88. <version>1.0L</version>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>net.ranides</groupId>
  93. <artifactId>assira.asm</artifactId>
  94. <version>4.1</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>findbugs</groupId>
  98. <artifactId>annotations</artifactId>
  99. <version>1.0.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>eu.vitaliy</groupId>
  103. <artifactId>mazovia-charset</artifactId>
  104. <version>1.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>joda-time</groupId>
  108. <artifactId>joda-time</artifactId>
  109. <version>2.1</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>cglib</groupId>
  113. <artifactId>cglib</artifactId>
  114. <version>2.2.2</version>
  115. </dependency>
  116. </dependencies>
  117. </project>