Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>cloud</groupId>
  8. <artifactId>tp2</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <name>tp2</name>
  12. <!-- FIXME change it to the project's website -->
  13. <url>http://www.example.com</url>
  14.  
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <maven.compiler.source>1.7</maven.compiler.source>
  18. <maven.compiler.target>1.7</maven.compiler.target>
  19. </properties>
  20.  
  21. <dependencies>
  22.  
  23. <!-- https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api -->
  24. <dependency>
  25. <groupId>jakarta.xml.bind</groupId>
  26. <artifactId>jakarta.xml.bind-api</artifactId>
  27. <version>2.3.2</version>
  28. </dependency>
  29.  
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <version>4.11</version>
  34. <scope>test</scope>
  35. </dependency>
  36.  
  37. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  38. <dependency>
  39. <groupId>org.dom4j</groupId>
  40. <artifactId>dom4j</artifactId>
  41. <version>2.1.1</version>
  42. </dependency>
  43.  
  44. <!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/txw2 -->
  45. <dependency>
  46. <groupId>org.glassfish.jaxb</groupId>
  47. <artifactId>txw2</artifactId>
  48. <version>2.4.0-b180725.0644</version>
  49. </dependency>
  50.  
  51. </dependencies>
  52.  
  53. <build>
  54. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  55. <plugins>
  56. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  57. <plugin>
  58. <artifactId>maven-clean-plugin</artifactId>
  59. <version>3.1.0</version>
  60. </plugin>
  61. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  62. <plugin>
  63. <artifactId>maven-resources-plugin</artifactId>
  64. <version>3.0.2</version>
  65. </plugin>
  66. <plugin>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <version>3.8.0</version>
  69. </plugin>
  70. <plugin>
  71. <artifactId>maven-surefire-plugin</artifactId>
  72. <version>2.22.1</version>
  73. </plugin>
  74. <plugin>
  75. <artifactId>maven-jar-plugin</artifactId>
  76. <version>3.0.2</version>
  77. </plugin>
  78. <plugin>
  79. <artifactId>maven-install-plugin</artifactId>
  80. <version>2.5.2</version>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-deploy-plugin</artifactId>
  84. <version>2.8.2</version>
  85. </plugin>
  86. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  87. <plugin>
  88. <artifactId>maven-site-plugin</artifactId>
  89. <version>3.7.1</version>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-project-info-reports-plugin</artifactId>
  93. <version>3.0.0</version>
  94. </plugin>
  95. </plugins>
  96. </pluginManagement>
  97. </build>
  98. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement