dependency-reduced-pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>pl.konrad</groupId>
  5. <artifactId>add-numbers-tester</artifactId>
  6. <version>1.0</version>
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <version>3.10.1</version>
  12. <configuration>
  13. <source>${java.version}</source>
  14. <target>${java.version}</target>
  15. </configuration>
  16. </plugin>
  17. <plugin>
  18. <artifactId>maven-surefire-plugin</artifactId>
  19. <version>3.0.0-M7</version>
  20. </plugin>
  21. <plugin>
  22. <artifactId>maven-site-plugin</artifactId>
  23. <version>4.0.0-M3</version>
  24. </plugin>
  25. <plugin>
  26. <artifactId>maven-shade-plugin</artifactId>
  27. <version>3.4.0</version>
  28. <executions>
  29. <execution>
  30. <phase>package</phase>
  31. <goals>
  32. <goal>shade</goal>
  33. </goals>
  34. </execution>
  35. </executions>
  36. <configuration>
  37. <shadedArtifactAttached>true</shadedArtifactAttached>
  38. </configuration>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. <dependencies>
  43. <dependency>
  44. <groupId>org.junit.jupiter</groupId>
  45. <artifactId>junit-jupiter-engine</artifactId>
  46. <version>5.9.1</version>
  47. <scope>test</scope>
  48. <exclusions>
  49. <exclusion>
  50. <artifactId>junit-platform-engine</artifactId>
  51. <groupId>org.junit.platform</groupId>
  52. </exclusion>
  53. <exclusion>
  54. <artifactId>junit-jupiter-api</artifactId>
  55. <groupId>org.junit.jupiter</groupId>
  56. </exclusion>
  57. <exclusion>
  58. <artifactId>apiguardian-api</artifactId>
  59. <groupId>org.apiguardian</groupId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. </dependencies>
  64. <reporting>
  65. <plugins>
  66. <plugin>
  67. <artifactId>maven-project-info-reports-plugin</artifactId>
  68. <version>3.4.1</version>
  69. </plugin>
  70. </plugins>
  71. </reporting>
  72. <properties>
  73. <java.version>11</java.version>
  74. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  75. <junit.jupiter.version>5.9.1</junit.jupiter.version>
  76. </properties>
  77. </project>