Create DEPLOY-POM.xml
Browse files- DEPLOY-POM.xml +34 -0
DEPLOY-POM.xml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
| 3 |
+
<modelVersion>4.0.0</modelVersion>
|
| 4 |
+
|
| 5 |
+
<groupId>com.quantarion</groupId>
|
| 6 |
+
<artifactId>quantarion-java-deploy</artifactId>
|
| 7 |
+
<version>3.0.0</version>
|
| 8 |
+
|
| 9 |
+
<parent>
|
| 10 |
+
<groupId>org.springframework.boot</groupId>
|
| 11 |
+
<artifactId>spring-boot-starter-parent</artifactId>
|
| 12 |
+
<version>3.2.4</version>
|
| 13 |
+
</parent>
|
| 14 |
+
|
| 15 |
+
<dependencies>
|
| 16 |
+
<dependency>
|
| 17 |
+
<groupId>org.springframework.boot</groupId>
|
| 18 |
+
<artifactId>spring-boot-starter-web</artifactId>
|
| 19 |
+
</dependency>
|
| 20 |
+
<dependency>
|
| 21 |
+
<groupId>org.springframework.boot</groupId>
|
| 22 |
+
<artifactId>spring-boot-starter-actuator</artifactId>
|
| 23 |
+
</dependency>
|
| 24 |
+
</dependencies>
|
| 25 |
+
|
| 26 |
+
<build>
|
| 27 |
+
<plugins>
|
| 28 |
+
<plugin>
|
| 29 |
+
<groupId>org.springframework.boot</groupId>
|
| 30 |
+
<artifactId>spring-boot-maven-plugin</artifactId>
|
| 31 |
+
</plugin>
|
| 32 |
+
</plugins>
|
| 33 |
+
</build>
|
| 34 |
+
</project>
|