JAVA-10625: Remove module immutables
This commit is contained in:
parent
813b27588e
commit
35fd43e577
|
@ -1,6 +0,0 @@
|
||||||
## Immutables
|
|
||||||
|
|
||||||
This module contains articles about the Immutables library.
|
|
||||||
|
|
||||||
### Relevant Articles:
|
|
||||||
- [Introduction to Immutables](https://www.baeldung.com/immutables)
|
|
|
@ -1,34 +0,0 @@
|
||||||
<?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.mutabilitydetector</groupId>
|
|
||||||
<artifactId>MutabilityDetector</artifactId>
|
|
||||||
<version>${mutabilitydetector.version}</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<immutables.version>2.5.6</immutables.version>
|
|
||||||
<mutabilitydetector.version>0.9.6</mutabilitydetector.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
</project>
|
|
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<configuration>
|
|
||||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
||||||
<encoder>
|
|
||||||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
|
|
||||||
</pattern>
|
|
||||||
</encoder>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<root level="INFO">
|
|
||||||
<appender-ref ref="STDOUT" />
|
|
||||||
</root>
|
|
||||||
</configuration>
|
|
|
@ -17,4 +17,5 @@ Remember, for advanced libraries like [Jackson](/jackson) and [JUnit](/testing-m
|
||||||
- [Using NullAway to Avoid NullPointerExceptions](https://www.baeldung.com/java-nullaway)
|
- [Using NullAway to Avoid NullPointerExceptions](https://www.baeldung.com/java-nullaway)
|
||||||
- [Introduction to Alibaba Arthas](https://www.baeldung.com/java-alibaba-arthas-intro)
|
- [Introduction to Alibaba Arthas](https://www.baeldung.com/java-alibaba-arthas-intro)
|
||||||
- [Introduction to Structurizr](https://www.baeldung.com/structurizr)
|
- [Introduction to Structurizr](https://www.baeldung.com/structurizr)
|
||||||
|
- [Introduction to Immutables](https://www.baeldung.com/immutables)
|
||||||
- More articles [[<-- prev]](../libraries-2) [[next -->]](../libraries-4)
|
- More articles [[<-- prev]](../libraries-2) [[next -->]](../libraries-4)
|
||||||
|
|
|
@ -112,6 +112,17 @@
|
||||||
<artifactId>structurizr-plantuml</artifactId>
|
<artifactId>structurizr-plantuml</artifactId>
|
||||||
<version>${structurizr.version}</version>
|
<version>${structurizr.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.immutables</groupId>
|
||||||
|
<artifactId>value</artifactId>
|
||||||
|
<version>${immutables.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mutabilitydetector</groupId>
|
||||||
|
<artifactId>MutabilityDetector</artifactId>
|
||||||
|
<version>${mutabilitydetector.version}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
|
@ -256,6 +267,8 @@
|
||||||
<plexus-compiler.version>2.8</plexus-compiler.version>
|
<plexus-compiler.version>2.8</plexus-compiler.version>
|
||||||
<errorprone.version>2.1.3</errorprone.version>
|
<errorprone.version>2.1.3</errorprone.version>
|
||||||
<structurizr.version>1.0.0</structurizr.version>
|
<structurizr.version>1.0.0</structurizr.version>
|
||||||
|
<immutables.version>2.5.6</immutables.version>
|
||||||
|
<mutabilitydetector.version>0.9.6</mutabilitydetector.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
Loading…
Reference in New Issue