pom.xml 3.1 KB

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