2017-07-09 15:22:17 -04:00
|
|
|
<?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">
|
2018-11-30 11:46:08 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>remoting-rmi-server</artifactId>
|
|
|
|
<name>remoting-rmi-server</name>
|
|
|
|
|
2017-07-09 15:22:17 -04:00
|
|
|
<parent>
|
2018-09-04 10:53:31 -04:00
|
|
|
<artifactId>remoting-rmi</artifactId>
|
2017-07-09 15:22:17 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2018-04-26 08:37:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2017-07-09 15:22:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2018-09-04 14:15:18 -04:00
|
|
|
<artifactId>remoting-http-api</artifactId>
|
2017-07-09 15:22:17 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2019-02-09 15:17:19 -05:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2017-07-09 15:22:17 -04:00
|
|
|
</project>
|