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.

119 lines
4.1 KiB

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. <executions>
  39. <execution>
  40. <id>foobar</id>
  41. <phase>package</phase>
  42. <goals>
  43. <goal>single</goal>
  44. </goals>
  45. </execution>
  46. </executions>
  47. <configuration>
  48. <descriptorRefs>
  49. <descriptorRef>jar-with-dependencies</descriptorRef>
  50. </descriptorRefs>
  51. <archive>
  52. <manifest>
  53. <mainClass>de.hsfulda.informatik.LdapSync</mainClass>
  54. </manifest>
  55. </archive>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <configuration>
  62. <source>8</source>
  63. <target>8</target>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  68. <plugins>
  69. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  70. <plugin>
  71. <artifactId>maven-clean-plugin</artifactId>
  72. <version>3.1.0</version>
  73. </plugin>
  74. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  75. <plugin>
  76. <artifactId>maven-resources-plugin</artifactId>
  77. <version>3.0.2</version>
  78. </plugin>
  79. <plugin>
  80. <artifactId>maven-compiler-plugin</artifactId>
  81. <version>3.8.0</version>
  82. </plugin>
  83. <plugin>
  84. <artifactId>maven-surefire-plugin</artifactId>
  85. <version>2.22.1</version>
  86. </plugin>
  87. <plugin>
  88. <artifactId>maven-jar-plugin</artifactId>
  89. <version>3.0.2</version>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-install-plugin</artifactId>
  93. <version>2.5.2</version>
  94. </plugin>
  95. <plugin>
  96. <artifactId>maven-deploy-plugin</artifactId>
  97. <version>2.8.2</version>
  98. </plugin>
  99. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  100. <plugin>
  101. <artifactId>maven-site-plugin</artifactId>
  102. <version>3.7.1</version>
  103. </plugin>
  104. <plugin>
  105. <artifactId>maven-project-info-reports-plugin</artifactId>
  106. <version>3.0.0</version>
  107. </plugin>
  108. </plugins>
  109. </pluginManagement>
  110. </build>
  111. </project>