|
|
|
|
@ -12,15 +12,43 @@
@@ -12,15 +12,43 @@
|
|
|
|
|
<properties> |
|
|
|
|
<main.basedir>${basedir}/../..</main.basedir> |
|
|
|
|
</properties> |
|
|
|
|
<dependencyManagement> |
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
|
<artifactId>tomcat-embed-core</artifactId> |
|
|
|
|
<version>${tomcat.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
|
<artifactId>tomcat-embed-logging-juli</artifactId> |
|
|
|
|
<version>${tomcat.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
</dependencyManagement> |
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>${project.groupId}</groupId> |
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId> |
|
|
|
|
<version>${project.version}</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<groupId>${project.groupId}</groupId> |
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.springframework</groupId> |
|
|
|
|
<artifactId>spring-websocket</artifactId> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
|
<artifactId>tomcat-embed-core</artifactId> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
|
<artifactId>tomcat-embed-logging-juli</artifactId> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
</project> |
|
|
|
|
|