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.1 KiB

3 years ago
4 months ago
3 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.hsfulda.informatik</groupId>
  6. <artifactId>ldap-sync</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>ldap-sync</name>
  9. <!-- FIXME change it to the project's website -->
  10. <url>http://www.example.com</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.7</maven.compiler.source>
  14. <maven.compiler.target>1.7</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.unboundid</groupId>
  19. <artifactId>unboundid-ldapsdk</artifactId>
  20. <version>6.0.1</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.guava</groupId>
  24. <artifactId>guava</artifactId>
  25. <version>30.1.1-jre</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <version>4.11</version>
  31. <scope>test</scope>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-assembly-plugin</artifactId>
  38. <version>3.6.0</version>
  39. <executions>
  40. <execution>
  41. <id>foobar</id>
  42. <phase>package</phase>
  43. <goals>
  44. <goal>single</goal>
  45. </goals>
  46. </execution>
  47. </executions>
  48. <configuration>
  49. <descriptorRefs>
  50. <descriptorRef>jar-with-dependencies</descriptorRef>
  51. </descriptorRefs>
  52. <archive>
  53. <manifest>
  54. <mainClass>de.hsfulda.informatik.LdapSync</mainClass>
  55. </manifest>
  56. </archive>
  57. </configuration>
  58. </plugin>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-compiler-plugin</artifactId>
  62. <configuration>
  63. <source>8</source>
  64. <target>8</target>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  69. <plugins>
  70. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  71. <plugin>
  72. <artifactId>maven-clean-plugin</artifactId>
  73. <version>3.1.0</version>
  74. </plugin>
  75. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  76. <plugin>
  77. <artifactId>maven-resources-plugin</artifactId>
  78. <version>3.0.2</version>
  79. </plugin>
  80. <plugin>
  81. <artifactId>maven-compiler-plugin</artifactId>
  82. <version>3.8.0</version>
  83. </plugin>
  84. <plugin>
  85. <artifactId>maven-surefire-plugin</artifactId>
  86. <version>2.22.1</version>
  87. </plugin>
  88. <plugin>
  89. <artifactId>maven-jar-plugin</artifactId>
  90. <version>3.0.2</version>
  91. </plugin>
  92. <plugin>
  93. <artifactId>maven-install-plugin</artifactId>
  94. <version>2.5.2</version>
  95. </plugin>
  96. <plugin>
  97. <artifactId>maven-deploy-plugin</artifactId>
  98. <version>2.8.2</version>
  99. </plugin>
  100. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  101. <plugin>
  102. <artifactId>maven-site-plugin</artifactId>
  103. <version>3.7.1</version>
  104. </plugin>
  105. <plugin>
  106. <artifactId>maven-project-info-reports-plugin</artifactId>
  107. <version>3.0.0</version>
  108. </plugin>
  109. </plugins>
  110. </pluginManagement>
  111. </build>
  112. </project>