Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
B-G101
GitHub Repository: B-G101/SPRING-CSA
Path: blob/master/pom.xml
112 views
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 https://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.4.4</version>
9
<relativePath/> <!-- lookup parent from repository -->
10
</parent>
11
<groupId>com.nighthawk</groupId>
12
<artifactId>spring</artifactId>
13
<version>0.0.1-SNAPSHOT</version>
14
<name>spring</name>
15
<description>Intro project for Spring Boot</description>
16
<properties>
17
<java.version>11</java.version>
18
<!-- Thymeleaf 3 -->
19
<org.thymeleaf-version>3.0.15.RELEASE</org.thymeleaf-version>
20
<org.thymeleaf.extras.springsecurity4-version>3.0.2.RELEASE</org.thymeleaf.extras.springsecurity4-version>
21
<nz.net.ultraq.thymeleaflayout-version>2.3.0</nz.net.ultraq.thymeleaflayout-version>
22
<thymeleaf-extras-java8time-version>3.0.1.RELEASE</thymeleaf-extras-java8time-version>
23
</properties>
24
25
<dependencies>
26
<!-- Spring -->
27
<dependency>
28
<groupId>org.springframework.boot</groupId>
29
<artifactId>spring-boot-starter-validation</artifactId>
30
</dependency>
31
<dependency>
32
<groupId>org.springframework.boot</groupId>
33
<artifactId>spring-boot-starter-thymeleaf</artifactId>
34
</dependency>
35
<dependency>
36
<groupId>org.springframework.boot</groupId>
37
<artifactId>spring-boot-starter-web</artifactId>
38
</dependency>
39
<dependency>
40
<groupId>org.springframework.boot</groupId>
41
<artifactId>spring-boot-devtools</artifactId>
42
<scope>runtime</scope>
43
<optional>true</optional>
44
</dependency>
45
<dependency>
46
<groupId>org.springframework.boot</groupId>
47
<artifactId>spring-boot-starter-test</artifactId>
48
<scope>test</scope>
49
<exclusions>
50
<exclusion>
51
<groupId>org.junit.vintage</groupId>
52
<artifactId>junit-vintage-engine</artifactId>
53
</exclusion>
54
</exclusions>
55
</dependency>
56
<!-- View -->
57
<dependency>
58
<groupId>org.thymeleaf</groupId>
59
<artifactId>thymeleaf</artifactId>
60
<version>${org.thymeleaf-version}</version>
61
</dependency>
62
<dependency>
63
<groupId>org.thymeleaf</groupId>
64
<artifactId>thymeleaf-spring5</artifactId>
65
<!-- TODO Remove once available in platform BOM -->
66
<version>${org.thymeleaf-version}</version>
67
</dependency>
68
<dependency>
69
<groupId>org.thymeleaf.extras</groupId>
70
<artifactId>thymeleaf-extras-springsecurity4</artifactId>
71
<!-- TODO Remove version once available in platform BOM -->
72
<version>${org.thymeleaf.extras.springsecurity4-version}</version>
73
</dependency>
74
<dependency>
75
<groupId>nz.net.ultraq.thymeleaf</groupId>
76
<artifactId>thymeleaf-layout-dialect</artifactId>
77
<version>${nz.net.ultraq.thymeleaflayout-version}</version>
78
</dependency>
79
<dependency>
80
<groupId>org.thymeleaf.extras</groupId>
81
<artifactId>thymeleaf-extras-java8time</artifactId>
82
<version>${thymeleaf-extras-java8time-version}</version>
83
</dependency>
84
<dependency>
85
<groupId>xml-apis</groupId>
86
<artifactId>xml-apis</artifactId>
87
<version>1.4.01</version>
88
</dependency>
89
<dependency>
90
<groupId>org.projectlombok</groupId>
91
<artifactId>lombok</artifactId>
92
<version>1.18.22</version>
93
</dependency>
94
<dependency>
95
<groupId>org.springframework.boot</groupId>
96
<artifactId>spring-boot-starter-data-mongodb</artifactId>
97
</dependency>
98
<dependency>
99
<groupId>org.xerial</groupId>
100
<artifactId>sqlite-jdbc</artifactId>
101
<version>3.30.1</version>
102
</dependency>
103
<!-- https://mvnrepository.com/artifact/com.zsoltfabok/sqlite-dialect -->
104
<dependency>
105
<groupId>com.zsoltfabok</groupId>
106
<artifactId>sqlite-dialect</artifactId>
107
<version>1.0</version>
108
</dependency>
109
<dependency>
110
<groupId>org.springframework.boot</groupId>
111
<artifactId>spring-boot-starter-data-jpa</artifactId>
112
</dependency>
113
<dependency>
114
<groupId>com.googlecode.json-simple</groupId>
115
<artifactId>json-simple</artifactId>
116
<version>1.1.1</version>
117
</dependency>
118
</dependencies>
119
120
<build>
121
<plugins>
122
<plugin>
123
<groupId>org.springframework.boot</groupId>
124
<artifactId>spring-boot-maven-plugin</artifactId>
125
</plugin>
126
</plugins>
127
</build>
128
129
</project>
130
131