Add a new project with dependencies to separate the layers

This commit is contained in:
Cavero Barca
2020-09-22 01:08:21 +02:00
parent cd89253474
commit f84e609938
5 changed files with 77 additions and 13 deletions
+14
View File
@@ -0,0 +1,14 @@
<?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>
<parent>
<groupId>com.baeldung.docker</groupId>
<artifactId>docker-spring-boot-parent</artifactId>
<version>0.0.1</version>
</parent>
<artifactId>docker-internal-dto</artifactId>
</project>
@@ -0,0 +1,14 @@
package com.baeldung.docker;
public class VariableDto {
private final String value;
public VariableDto(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}