1
0
Files
push-service/push-service-client-lib/pom.xml
2020-07-28 00:05:58 +02:00

54 lines
1.9 KiB
XML

<?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>
<artifactId>push-service-parent</artifactId>
<groupId>de.77zzcx7.push-service</groupId>
<version>2</version>
</parent>
<artifactId>push-service-client-lib</artifactId>
<packaging>jar</packaging>
<description>Client libraries for push-service</description>
<name>push-service-client-lib</name>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Misc dependencies -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--
Setting the classifier of the spring-boot uber JAR to exec will keep the verbatim JAR file
as actual distributed artifact required for users to include the beans
-->
<classifier>exec</classifier>
</configuration>
</plugin>
</plugins>
</build>
</project>