35 lines
1.0 KiB
XML
35 lines
1.0 KiB
XML
<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>
|
|
|
|
<parent>
|
|
<groupId>it1901.groups2021.gr2141</groupId>
|
|
<artifactId>flashy</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>core</artifactId>
|
|
<name>Core</name>
|
|
<version>${project.parent.version}</version>
|
|
<description>
|
|
Module for all core logic, including datamodels and backend service workers.
|
|
</description>
|
|
|
|
<dependencies>
|
|
<!-- Jackson - JSON parser -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Mockito -->
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-inline</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |