|
|
@@ -1,9 +1,104 @@
|
|
|
<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">
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
- <groupId>org.example</groupId>
|
|
|
- <artifactId>KonwersjaLiter2</artifactId>
|
|
|
- <version>1.0-SNAPSHOT</version>
|
|
|
- <name>Archetype - KonwersjaLiter2</name>
|
|
|
- <url>http://maven.apache.org</url>
|
|
|
+ <groupId>pl.dmcs</groupId>
|
|
|
+ <artifactId>app</artifactId>
|
|
|
+ <version>1.0</version>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <maven.compiler.source>21</maven.compiler.source>
|
|
|
+ <maven.compiler.target>21</maven.compiler.target>
|
|
|
+ <junit.version>5.10.2</junit.version>
|
|
|
+ </properties>
|
|
|
+ <!-- useful for documentation generation -->
|
|
|
+ <name>My sample project</name>
|
|
|
+ <description>This is my sample project.</description>
|
|
|
+ <url>https://weeia.p.lodz.pl</url>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.junit.jupiter</groupId>
|
|
|
+ <artifactId>junit-jupiter-api</artifactId>
|
|
|
+ <version>${junit.version}</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.junit.jupiter</groupId>
|
|
|
+ <artifactId>junit-jupiter-engine</artifactId>
|
|
|
+ <version>${junit.version}</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.testng</groupId>
|
|
|
+ <artifactId>testng</artifactId>
|
|
|
+ <version>RELEASE</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ <build>
|
|
|
+ <pluginManagement>
|
|
|
+ <!-- lock down plugins versions to avoid using Maven defaults -->
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
+ <version>3.3.1</version>
|
|
|
+ <configuration>
|
|
|
+ <includeEmptyDirs>true</includeEmptyDirs>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-clean-plugin</artifactId>
|
|
|
+ <version>3.3.2</version>
|
|
|
+ </plugin>
|
|
|
+ <!-- default lifecycle -->
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>3.12.1</version>
|
|
|
+ <configuration>
|
|
|
+ <source>21</source>
|
|
|
+ <target>21</target>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <version>3.2.5</version>
|
|
|
+ <configuration>
|
|
|
+ <includes>
|
|
|
+ <include>**/*Test.java</include>
|
|
|
+ </includes>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-jar-plugin</artifactId>
|
|
|
+ <version>3.3.0</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-install-plugin</artifactId>
|
|
|
+ <version>3.1.1</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-deploy-plugin</artifactId>
|
|
|
+ <version>3.1.1</version>
|
|
|
+ </plugin>
|
|
|
+ <!-- site lifecycle -->
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-site-plugin</artifactId>
|
|
|
+ <version>4.0.0-M13</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
+ <version>3.5.0</version>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </pluginManagement>
|
|
|
+ <testResources>
|
|
|
+ <testResource>
|
|
|
+ <directory>src/test/resources</directory>
|
|
|
+ <excludes>
|
|
|
+ <exclude>**/.gitkeep</exclude>
|
|
|
+ </excludes>
|
|
|
+ </testResource>
|
|
|
+ </testResources>
|
|
|
+ </build>
|
|
|
</project>
|