pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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.52</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. </plugins>
  28. </build>
  29. <dependencies>
  30. <dependency>
  31. <groupId>log4j</groupId>
  32. <artifactId>log4j</artifactId>
  33. <version>1.2.16</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-collections</groupId>
  37. <artifactId>commons-collections</artifactId>
  38. <version>3.2.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>4.10</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-lang3</artifactId>
  49. <version>3.1</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.fasterxml.jackson.core</groupId>
  53. <artifactId>jackson-core</artifactId>
  54. <version>2.0.1</version>
  55. <type>jar</type>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.fasterxml.jackson.datatype</groupId>
  59. <artifactId>jackson-datatype-json-org</artifactId>
  60. <version>2.0.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.google.caliper</groupId>
  64. <artifactId>caliper</artifactId>
  65. <version>1.0L</version>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>net.ranides</groupId>
  70. <artifactId>assira.asm</artifactId>
  71. <version>4.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>findbugs</groupId>
  75. <artifactId>annotations</artifactId>
  76. <version>1.0.0</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.testng</groupId>
  80. <artifactId>testng</artifactId>
  81. <version>6.5.2</version>
  82. <scope>test</scope>
  83. <type>jar</type>
  84. </dependency>
  85. <dependency>
  86. <groupId>eu.vitaliy</groupId>
  87. <artifactId>mazovia-charset</artifactId>
  88. <version>1.0</version>
  89. </dependency>
  90. </dependencies>
  91. </project>