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.

86 lines
2.7 KiB

2 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>de.hs-fulda.ciip</groupId>
  6. <artifactId>projjpn</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>projjpn</name>
  9. <description>A simple projjpn.</description>
  10. <!-- FIXME change it to the project's website -->
  11. <url>http://www.example.com</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.7</maven.compiler.source>
  15. <maven.compiler.target>1.7</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <version>3.8.1</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>net.sf.ucanaccess</groupId>
  25. <artifactId>ucanaccess</artifactId>
  26. <version>5.0.1</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  31. <plugins>
  32. <plugin>
  33. <artifactId>maven-clean-plugin</artifactId>
  34. <version>3.1.0</version>
  35. </plugin>
  36. <plugin>
  37. <artifactId>maven-site-plugin</artifactId>
  38. <version>3.7.1</version>
  39. </plugin>
  40. <plugin>
  41. <artifactId>maven-project-info-reports-plugin</artifactId>
  42. <version>3.0.0</version>
  43. </plugin>
  44. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  45. <plugin>
  46. <artifactId>maven-resources-plugin</artifactId>
  47. <version>3.0.2</version>
  48. </plugin>
  49. <plugin>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <version>3.8.0</version>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-surefire-plugin</artifactId>
  55. <version>2.22.1</version>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-jar-plugin</artifactId>
  59. <version>3.0.2</version>
  60. </plugin>
  61. <plugin>
  62. <artifactId>maven-install-plugin</artifactId>
  63. <version>2.5.2</version>
  64. </plugin>
  65. <plugin>
  66. <artifactId>maven-deploy-plugin</artifactId>
  67. <version>2.8.2</version>
  68. </plugin>
  69. </plugins>
  70. </pluginManagement>
  71. </build>
  72. <reporting>
  73. <plugins>
  74. <plugin>
  75. <artifactId>maven-project-info-reports-plugin</artifactId>
  76. </plugin>
  77. </plugins>
  78. </reporting>
  79. </project>