40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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>
|
||
|
<artifactId>immutables</artifactId>
|
||
|
<name>immutables</name>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>parent-modules</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.immutables</groupId>
|
||
|
<artifactId>value</artifactId>
|
||
|
<version>${immutables.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.assertj</groupId>
|
||
|
<artifactId>assertj-core</artifactId>
|
||
|
<version>${assertj.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mutabilitydetector</groupId>
|
||
|
<artifactId>MutabilityDetector</artifactId>
|
||
|
<version>${mutabilitydetector.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<immutables.version>2.5.6</immutables.version>
|
||
|
<assertj.version>3.6.1</assertj.version>
|
||
|
<mutabilitydetector.version>0.9.6</mutabilitydetector.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|