change setup of spring-ejb-client

This commit is contained in:
Loredana Crusoveanu 2018-10-20 20:41:36 +03:00
parent 55fbc18541
commit 294d52e7e4
2 changed files with 17 additions and 4 deletions

View File

@ -73,6 +73,7 @@
<modules>
<module>ejb-remote-for-spring</module>
<module>ejb-beans</module>
<module>spring-ejb-client</module>
</modules>
<properties>

View File

@ -10,11 +10,22 @@
<description>Spring EJB Client</description>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-2</relativePath>
<groupId>com.baeldung.spring.ejb</groupId>
<artifactId>spring-ejb</artifactId>
<version>1.0.1</version>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.0.4.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
@ -54,6 +65,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.0.4.RELEASE</version>
</plugin>
</plugins>
</build>