dependency-reduced-pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>cz.davza</groupId>
  5. <artifactId>StudentAdventure</artifactId>
  6. <name>StudentAdventure</name>
  7. <version>1.1.0</version>
  8. <build>
  9. <testSourceDirectory>${project.basedir}/test</testSourceDirectory>
  10. <plugins>
  11. <plugin>
  12. <artifactId>maven-compiler-plugin</artifactId>
  13. <version>3.13.0</version>
  14. <configuration>
  15. <source>21</source>
  16. <target>21</target>
  17. </configuration>
  18. </plugin>
  19. <plugin>
  20. <artifactId>maven-shade-plugin</artifactId>
  21. <version>3.6.0</version>
  22. <executions>
  23. <execution>
  24. <phase>package</phase>
  25. <goals>
  26. <goal>shade</goal>
  27. </goals>
  28. <configuration>
  29. <transformers>
  30. <transformer>
  31. <mainClass>cz.davza.studentadventure.main.Main</mainClass>
  32. </transformer>
  33. </transformers>
  34. </configuration>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.junit.jupiter</groupId>
  43. <artifactId>junit-jupiter-api</artifactId>
  44. <version>5.12.1</version>
  45. <scope>test</scope>
  46. <exclusions>
  47. <exclusion>
  48. <artifactId>opentest4j</artifactId>
  49. <groupId>org.opentest4j</groupId>
  50. </exclusion>
  51. <exclusion>
  52. <artifactId>junit-platform-commons</artifactId>
  53. <groupId>org.junit.platform</groupId>
  54. </exclusion>
  55. <exclusion>
  56. <artifactId>apiguardian-api</artifactId>
  57. <groupId>org.apiguardian</groupId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.junit.jupiter</groupId>
  63. <artifactId>junit-jupiter-engine</artifactId>
  64. <version>5.12.1</version>
  65. <scope>test</scope>
  66. <exclusions>
  67. <exclusion>
  68. <artifactId>junit-platform-engine</artifactId>
  69. <groupId>org.junit.platform</groupId>
  70. </exclusion>
  71. <exclusion>
  72. <artifactId>apiguardian-api</artifactId>
  73. <groupId>org.apiguardian</groupId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. </dependencies>
  78. <properties>
  79. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  80. <junit.version>5.12.1</junit.version>
  81. </properties>
  82. </project>