-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
41 lines (36 loc) · 1.38 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
<?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>
<groupId>ru.example</groupId>
<artifactId>clusterj</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<name>ClusterJ Example App</name>
<description>Example for using MySQL NDB Cluster with ClusterJ</description>
<properties>
<java.version>8</java.version>
<junit-jupiter.version>5.7.2</junit-jupiter.version>
<junit-platform.version>1.7.1</junit-platform.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.2</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<modules>
<module>clusterj-app</module>
<module>clusterj-spring-boot-starter</module>
</modules>
</project>