WIP: Uniqe-Users
[demos/kafka/outbox] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4    <modelVersion>4.0.0</modelVersion>
5    <parent>
6      <groupId>org.springframework.boot</groupId>
7      <artifactId>spring-boot-starter-parent</artifactId>
8      <version>2.1.5.RELEASE</version>
9      <relativePath/> <!-- lookup parent from repository -->
10    </parent>
11    <groupId>de.juplo.boot.data</groupId>
12    <artifactId>jdbc</artifactId>
13    <version>0.0.1-SNAPSHOT</version>
14    <name>data-jdbc</name>
15    <description>Eine Simple Web-Anwendung auf Basis von spring-boot-data-jdbc</description>
16
17    <properties>
18      <java.version>1.8</java.version>
19    </properties>
20
21    <dependencies>
22      <dependency>
23        <groupId>org.springframework.boot</groupId>
24        <artifactId>spring-boot-starter-web</artifactId>
25      </dependency>
26      <dependency>
27        <groupId>org.springframework.boot</groupId>
28        <artifactId>spring-boot-starter-actuator</artifactId>
29      </dependency>
30      <dependency>
31        <groupId>org.springframework.boot</groupId>
32        <artifactId>spring-boot-starter-data-jdbc</artifactId>
33      </dependency>
34      <dependency>
35        <groupId>org.springframework.boot</groupId>
36        <artifactId>spring-boot-starter-json</artifactId>
37      </dependency>
38      <dependency>
39        <groupId>org.projectlombok</groupId>
40        <artifactId>lombok</artifactId>
41      </dependency>
42
43      <dependency>
44        <groupId>com.h2database</groupId>
45        <artifactId>h2</artifactId>
46        <scope>runtime</scope>
47      </dependency>
48
49      <dependency>
50        <groupId>org.springframework.boot</groupId>
51        <artifactId>spring-boot-starter-test</artifactId>
52        <scope>test</scope>
53      </dependency>
54    </dependencies>
55
56    <build>
57      <plugins>
58        <plugin>
59          <groupId>io.fabric8</groupId>
60          <artifactId>docker-maven-plugin</artifactId>
61          <version>0.33.0</version>
62          <configuration>
63            <images>
64              <image>
65                <name>%a:%l</name>
66              </image>
67            </images>
68          </configuration>
69          <executions>
70            <execution>
71               <id>build</id>
72               <phase>package</phase>
73               <goals>
74                 <goal>build</goal>
75               </goals>
76            </execution>
77          </executions>
78        </plugin>
79      </plugins>
80    </build>
81
82 </project>