Guest User

Untitled

a guest
May 5th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 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>it.polimi.ingsw</groupId>
  8. <artifactId>GC01</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <name>GC01</name>
  12. <url>https://lucapirovano.com</url>
  13.  
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
  17. <sonar.language>java</sonar.language>
  18. <maven.compiler.source>14</maven.compiler.source>
  19. <maven.compiler.target>14</maven.compiler.target>
  20. <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
  21. <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
  22. <sonar.language>java</sonar.language>
  23. </properties>
  24.  
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.jacoco</groupId>
  28. <artifactId>jacoco-maven-plugin</artifactId>
  29. <version>0.8.5</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.google.code.gson</groupId>
  33. <artifactId>gson</artifactId>
  34. <version>2.8.6</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.junit.jupiter</groupId>
  38. <artifactId>junit-jupiter-engine</artifactId>
  39. <version>5.5.2</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.junit.jupiter</groupId>
  44. <artifactId>junit-jupiter-params</artifactId>
  45. <version>5.5.2</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.openjfx</groupId>
  50. <artifactId>javafx-graphics</artifactId>
  51. <version>14</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.openjfx</groupId>
  55. <artifactId>javafx-fxml</artifactId>
  56. <version>14</version>
  57. </dependency>
  58. </dependencies>
  59.  
  60.  
  61. <build>
  62. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  63. <plugins>
  64. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  65. <plugin>
  66. <artifactId>maven-clean-plugin</artifactId>
  67. <version>3.1.0</version>
  68. </plugin>
  69. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  70. <plugin>
  71. <artifactId>maven-resources-plugin</artifactId>
  72. <version>3.0.2</version>
  73. </plugin>
  74. <plugin>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>3.8.0</version>
  77. </plugin>
  78. <plugin>
  79. <artifactId>maven-surefire-plugin</artifactId>
  80. <version>2.22.1</version>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-jar-plugin</artifactId>
  84. <version>3.0.2</version>
  85. </plugin>
  86. <plugin>
  87. <artifactId>maven-install-plugin</artifactId>
  88. <version>2.5.2</version>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-deploy-plugin</artifactId>
  92. <version>2.8.2</version>
  93. </plugin>
  94. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  95. <plugin>
  96. <artifactId>maven-site-plugin</artifactId>
  97. <version>3.7.1</version>
  98. </plugin>
  99. <plugin>
  100. <artifactId>maven-project-info-reports-plugin</artifactId>
  101. <version>3.0.0</version>
  102. </plugin>
  103. </plugins>
  104. </pluginManagement>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.jacoco</groupId>
  108. <artifactId>jacoco-maven-plugin</artifactId>
  109. <version>0.8.5</version>
  110. <configuration>
  111. <excludes>
  112. <exclude>META-INF/**</exclude>
  113. </excludes>
  114. </configuration>
  115. <executions>
  116. <execution>
  117. <id>pre-unit-test</id>
  118. <goals>
  119. <goal>prepare-agent</goal>
  120. </goals>
  121. </execution>
  122. <execution>
  123. <id>post-unit-test</id>
  124. <phase>test</phase>
  125. <goals>
  126. <goal>report</goal>
  127. <goal>check</goal>
  128. </goals>
  129. <configuration>
  130. <rules>
  131. </rules>
  132. </configuration>
  133. </execution>
  134. </executions>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-compiler-plugin</artifactId>
  139. <configuration>
  140. <source>14</source>
  141. <target>14</target>
  142. </configuration>
  143. </plugin>
  144. </plugins>
  145. </build>
  146.  
  147. </project>
Add Comment
Please, Sign In to add comment