forked from arjungautam1/fullstack-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
104 lines (103 loc) · 4.04 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.codewitharjun</groupId>
<artifactId>demoapp-backend</artifactId>
<version>${revision}</version>
<name>demoapp-backend</name>
<description>Backend application </description>
<properties>
<revision>1.0.0-SNAPSHOT</revision> <!-- Set default version -->
<java.version>17</java.version>
<!-- MySQL Connector: https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<mysql-connector-java-version>8.0.33</mysql-connector-java-version>
<!-- Dockerfile Build Plugin: https://github.com/spotify/dockerfile-maven -->
<dockerfile-maven-version>1.4.13</dockerfile-maven-version>
<docker.registry.url>${DOCKER_REGISTRY_URL}</docker.registry.url> <!-- Command Line Arguments as Maven Properties: https://www.baeldung.com/maven-arguments -->
<docker.registry.username>${DOCKER_REGISTRY_USERNAME}</docker.registry.username> <!-- Command Line Arguments as Maven Properties: https://www.baeldung.com/maven-arguments -->
<docker.registry.password>${DOCKER_REGISTRY_PASSWORD}</docker.registry.password> <!-- Command Line Arguments as Maven Properties: https://www.baeldung.com/maven-arguments -->
</properties>
<dependencies>
<!-- Added by Paul Gilber (Start) -->
<!-- Enable Spring Boot Actuator: https://www.tutorialspoint.com/spring_boot/spring_boot_actuator.htm -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Added by Paul Gilber (End) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql-connector-java-version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!-- Dockerfile Build Plugin (tag: ${project.version}): https://github.com/spotify/dockerfile-maven -->
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<version>${dockerfile-maven-version}</version>
<executions>
<!-- Build Container Image -->
<execution>
<id>default</id>
<!-- https://github.com/spotify/dockerfile-maven/blob/master/docs/usage.md#maven-goals -->
<goals>
<goal>build</goal>
<goal>push</goal>
</goals>
</execution>
<!-- Create Container Image `latest` tag -->
<execution>
<id>latest-tag</id>
<goals>
<goal>tag</goal>
<goal>push</goal>
</goals>
<configuration>
<tag>latest</tag>
</configuration>
</execution>
</executions>
<configuration>
<dockerfile>Containerfile</dockerfile>
<username>${docker.registry.username}</username>
<password>${docker.registry.password}</password>
<repository>${docker.registry.url}${project.artifactId}</repository>
<tag>${project.version}</tag>
<contextDirectory>.</contextDirectory>
<buildArgs>
<JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
</buildArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>