| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>cz.davza</groupId>
- <artifactId>StudentAdventure</artifactId>
- <name>StudentAdventure</name>
- <version>1.1.0</version>
- <build>
- <testSourceDirectory>${project.basedir}/test</testSourceDirectory>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.13.0</version>
- <configuration>
- <source>21</source>
- <target>21</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.6.0</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <transformers>
- <transformer>
- <mainClass>cz.davza.studentadventure.main.Main</mainClass>
- </transformer>
- </transformers>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-api</artifactId>
- <version>5.12.1</version>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <artifactId>opentest4j</artifactId>
- <groupId>org.opentest4j</groupId>
- </exclusion>
- <exclusion>
- <artifactId>junit-platform-commons</artifactId>
- <groupId>org.junit.platform</groupId>
- </exclusion>
- <exclusion>
- <artifactId>apiguardian-api</artifactId>
- <groupId>org.apiguardian</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-engine</artifactId>
- <version>5.12.1</version>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <artifactId>junit-platform-engine</artifactId>
- <groupId>org.junit.platform</groupId>
- </exclusion>
- <exclusion>
- <artifactId>apiguardian-api</artifactId>
- <groupId>org.apiguardian</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <junit.version>5.12.1</junit.version>
- </properties>
- </project>
|