Skip to content
Snippets Groups Projects
pom.xml 999 B
Newer Older
Daniel Múčka's avatar
Daniel Múčka committed
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>cz.muni.fi.pa165</groupId>
    <artifactId>movie-recommendation-project</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <groupId>cz.muni.fi.pa165</groupId>
  <artifactId>module-user</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>module-user</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>5.9.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.13.2</version>
      <scope>test</scope>
    </dependency>
Daniel Múčka's avatar
Daniel Múčka committed
  </dependencies>
</project>