| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?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>pl.konrad</groupId>
- <artifactId>add-numbers-tester</artifactId>
- <version>1.0</version>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.10.1</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>3.0.0-M7</version>
- </plugin>
- <plugin>
- <artifactId>maven-site-plugin</artifactId>
- <version>4.0.0-M3</version>
- </plugin>
- <plugin>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.4.0</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <shadedArtifactAttached>true</shadedArtifactAttached>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-engine</artifactId>
- <version>5.9.1</version>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <artifactId>junit-platform-engine</artifactId>
- <groupId>org.junit.platform</groupId>
- </exclusion>
- <exclusion>
- <artifactId>junit-jupiter-api</artifactId>
- <groupId>org.junit.jupiter</groupId>
- </exclusion>
- <exclusion>
- <artifactId>apiguardian-api</artifactId>
- <groupId>org.apiguardian</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <reporting>
- <plugins>
- <plugin>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>3.4.1</version>
- </plugin>
- </plugins>
- </reporting>
- <properties>
- <java.version>11</java.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <junit.jupiter.version>5.9.1</junit.jupiter.version>
- </properties>
- </project>
|