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.

pom.xml 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>be.syntra.beige.team</groupId>
  6. <artifactId>team-beige</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>team-beige</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>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.11</version>
  21. <scope>test</scope>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  26. <plugins>
  27. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  28. <plugin>
  29. <artifactId>maven-clean-plugin</artifactId>
  30. <version>3.1.0</version>
  31. </plugin>
  32. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  33. <plugin>
  34. <artifactId>maven-resources-plugin</artifactId>
  35. <version>3.0.2</version>
  36. </plugin>
  37. <plugin>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>3.8.0</version>
  40. </plugin>
  41. <plugin>
  42. <artifactId>maven-surefire-plugin</artifactId>
  43. <version>2.22.1</version>
  44. </plugin>
  45. <plugin>
  46. <artifactId>maven-jar-plugin</artifactId>
  47. <version>3.0.2</version>
  48. </plugin>
  49. <plugin>
  50. <artifactId>maven-install-plugin</artifactId>
  51. <version>2.5.2</version>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-deploy-plugin</artifactId>
  55. <version>2.8.2</version>
  56. </plugin>
  57. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  58. <plugin>
  59. <artifactId>maven-site-plugin</artifactId>
  60. <version>3.7.1</version>
  61. </plugin>
  62. <plugin>
  63. <artifactId>maven-project-info-reports-plugin</artifactId>
  64. <version>3.0.0</version>
  65. </plugin>
  66. </plugins>
  67. </pluginManagement><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><configuration><source>7</source><target>7</target></configuration></plugin></plugins>
  68. </build>
  69. </project>