pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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.53</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-compiler-plugin</artifactId>
  19. <version>2.3.2</version>
  20. <configuration>
  21. <source>1.6</source>
  22. <target>1.6</target>
  23. <compilerArgument>-Xlint:unchecked</compilerArgument>
  24. <compilerArgument>-proc:none</compilerArgument>
  25. </configuration>
  26. </plugin>
  27. <!-- Pamięć dla LFSRTest -->
  28. <!-- <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-surefire-plugin</artifactId>
  31. <version>2.13</version>
  32. <configuration>
  33. <forkMode>pertest</forkMode>
  34. <argLine>-Xms512m -Xmx512m</argLine>
  35. <testFailureIgnore>false</testFailureIgnore>
  36. <skip>false</skip>
  37. </configuration>
  38. </plugin>-->
  39. </plugins>
  40. </build>
  41. <dependencies>
  42. <dependency>
  43. <groupId>log4j</groupId>
  44. <artifactId>log4j</artifactId>
  45. <version>1.2.16</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-collections</groupId>
  49. <artifactId>commons-collections</artifactId>
  50. <version>3.2.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>junit</groupId>
  54. <artifactId>junit</artifactId>
  55. <version>4.10</version>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-lang3</artifactId>
  61. <version>3.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fasterxml.jackson.core</groupId>
  65. <artifactId>jackson-core</artifactId>
  66. <version>2.0.1</version>
  67. <type>jar</type>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.fasterxml.jackson.datatype</groupId>
  71. <artifactId>jackson-datatype-json-org</artifactId>
  72. <version>2.0.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.google.caliper</groupId>
  76. <artifactId>caliper</artifactId>
  77. <version>1.0L</version>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>net.ranides</groupId>
  82. <artifactId>assira.asm</artifactId>
  83. <version>4.1</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>findbugs</groupId>
  87. <artifactId>annotations</artifactId>
  88. <version>1.0.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>eu.vitaliy</groupId>
  92. <artifactId>mazovia-charset</artifactId>
  93. <version>1.0</version>
  94. </dependency>
  95. </dependencies>
  96. </project>