Files
java-tutorials/immutables/pom.xml
T

40 lines
1.4 KiB
XML
Raw Normal View History

2016-07-29 11:55:35 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2017-05-12 20:32:54 +02:00
<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">
2016-07-29 11:55:35 +02:00
<modelVersion>4.0.0</modelVersion>
<artifactId>immutables</artifactId>
<version>1.0.0-SNAPSHOT</version>
2017-05-09 22:37:43 +02:00
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
2017-05-12 20:32:54 +02:00
</parent>
2016-07-29 11:55:35 +02:00
<dependencies>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
2016-12-12 15:16:56 +02:00
<version>${immutables.version}</version>
2016-07-29 11:55:35 +02:00
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
2016-12-12 15:16:56 +02:00
<version>${assertj.version}</version>
2016-07-29 11:55:35 +02:00
<scope>test</scope>
</dependency>
2016-07-30 12:22:43 +02:00
<dependency>
<groupId>org.mutabilitydetector</groupId>
<artifactId>MutabilityDetector</artifactId>
2016-12-12 15:16:56 +02:00
<version>${mutabilitydetector.version}</version>
2016-07-30 12:22:43 +02:00
<scope>test</scope>
</dependency>
2016-07-29 11:55:35 +02:00
</dependencies>
2017-05-12 20:32:54 +02:00
2016-12-12 15:16:56 +02:00
<properties>
2017-09-02 10:43:10 +02:00
<immutables.version>2.5.6</immutables.version>
2016-12-12 15:16:56 +02:00
<assertj.version>3.6.1</assertj.version>
2017-05-12 20:32:54 +02:00
<mutabilitydetector.version>0.9.6</mutabilitydetector.version>
2016-12-12 15:16:56 +02:00
</properties>
2016-07-29 11:55:35 +02:00
</project>