You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

120 lines
4.3 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.sothr.imagetools</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>1.0.1</version>
  9. <relativePath>../parent</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>hash</artifactId>
  13. <version>0.1.1</version>
  14. <packaging>jar</packaging>
  15. <name>ImageTools-Hash</name>
  16. <description>An image collection management utility</description>
  17. <url>http://imagetools.sothr.com</url>
  18. <organization>
  19. <name>Sothr Software</name>
  20. </organization>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.scala-lang</groupId>
  24. <artifactId>scala-library</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.jsuereth</groupId>
  28. <artifactId>scala-arm_${scala.binary.version}</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.slf4j</groupId>
  32. <artifactId>slf4j-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.clapper</groupId>
  36. <artifactId>grizzled-slf4j_${scala.binary.version}</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>net.coobird</groupId>
  40. <artifactId>thumbnailator</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-codec</groupId>
  44. <artifactId>commons-codec</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>net.sourceforge.jtransforms</groupId>
  48. <artifactId>jtransforms</artifactId>
  49. </dependency>
  50. <!-- TEST -->
  51. <dependency>
  52. <groupId>org.scalatest</groupId>
  53. <artifactId>scalatest_${scala.binary.version}</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <!-- enable surefire for java tests-->
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-surefire-plugin</artifactId>
  63. <version>2.7</version>
  64. <configuration>
  65. <skipTests>false</skipTests>
  66. </configuration>
  67. </plugin>
  68. <!-- enable scalatest for scala tests-->
  69. <plugin>
  70. <groupId>org.scalatest</groupId>
  71. <artifactId>scalatest-maven-plugin</artifactId>
  72. <version>1.0-RC2</version>
  73. <configuration>
  74. <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
  75. <junitxml>.</junitxml>
  76. <filereports>WDF TestSuite.txt</filereports>
  77. <argLine>-Xmx128m</argLine>
  78. </configuration>
  79. <executions>
  80. <execution>
  81. <id>test</id>
  82. <goals>
  83. <goal>test</goal>
  84. </goals>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. <!-- Packaging Configuration -->
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-jar-plugin</artifactId>
  92. <version>2.4</version>
  93. <executions>
  94. <execution>
  95. <phase>package</phase>
  96. <goals>
  97. <goal>jar</goal>
  98. </goals>
  99. <configuration>
  100. <archive>
  101. <manifest>
  102. <addClasspath>true</addClasspath>
  103. <classpathPrefix>lib/</classpathPrefix>
  104. </manifest>
  105. </archive>
  106. <outputDirectory>
  107. ${project.build.directory}/release
  108. </outputDirectory>
  109. </configuration>
  110. </execution>
  111. </executions>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. </project>