pom.xml 796 B

1234567891011121314151617181920
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>pl.dmcs</groupId>
  6. <artifactId>project-parent</artifactId>
  7. <version>1.0</version>
  8. <relativePath>../pom.xml</relativePath> <!-- Upewnij się, że ścieżka jest poprawna -->
  9. </parent>
  10. <artifactId>project-multiply</artifactId>
  11. <version>1.0</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.junit.jupiter</groupId>
  15. <artifactId>junit-jupiter-api</artifactId>
  16. <scope>test</scope>
  17. </dependency>
  18. </dependencies>
  19. </project>