| 1234567891011121314151617181920 |
- <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/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>pl.dmcs</groupId>
- <artifactId>project-parent</artifactId>
- <version>1.0</version>
- <relativePath>../pom.xml</relativePath> <!-- Upewnij się, że ścieżka jest poprawna -->
- </parent>
- <artifactId>project-add</artifactId>
- <version>1.0</version>
- <dependencies>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-api</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|