-
Notifications
You must be signed in to change notification settings - Fork 7
/
pom.xml
117 lines (101 loc) · 4.75 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
105
106
107
108
109
110
111
112
113
114
115
116
117
<?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>com.bootiful</groupId>
<artifactId>Bootiful</artifactId>
<version>0.0.1-SNAPSHOT</version>
<modules>
<module>framework</module>
<module>web</module>
<module>jax-ws</module>
<module>client</module>
</modules>
<packaging>pom</packaging>
<name>Bootiful</name>
<description>Spring Boot Project</description>
<properties>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring-boot.version>2.0.5.RELEASE</spring-boot.version>
<apache.cxf.version>3.2.6</apache.cxf.version>
<springmvc-router.version>1.2.0</springmvc-router.version>
<!--<thymeleaf-tiles.version>2.1.1.RELEASE</thymeleaf-tiles.version>-->
<!--<javax.servlet.version>1.2</javax.servlet.version>-->
<thymeleaf-layout-dialect.version>2.3.0</thymeleaf-layout-dialect.version>
<specification-arg-resolver.version>1.1.1</specification-arg-resolver.version>
<specification-with-projections.version>2.0.0</specification-with-projections.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- Bootiful Framework -->
<dependency>
<groupId>com.bootiful</groupId>
<artifactId>framework</artifactId>
<version>${project.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<type>pom</type>
<version>${spring-boot.version}</version>
<scope>import</scope>
</dependency>
<!-- Apache CXF Jax-WS -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-spring-boot-starter-jaxws</artifactId>
<version>${apache.cxf.version}</version>
</dependency>
<!-- Spring Mvc Router -->
<dependency>
<groupId>org.resthub</groupId>
<artifactId>springmvc-router</artifactId>
<version>${springmvc-router.version}</version>
</dependency>
<!-- THYMELEAF EXTRAS TILES
removed cause: https://github.com/thymeleaf/thymeleaf-extras-tiles2/issues/24
-->
<!--<dependency>-->
<!--<groupId>org.thymeleaf.extras</groupId>-->
<!--<artifactId>thymeleaf-extras-tiles2</artifactId>-->
<!--<version>${thymeleaf-tiles.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.thymeleaf.extras</groupId>-->
<!--<artifactId>thymeleaf-extras-tiles2-spring4</artifactId>-->
<!--<version>${thymeleaf-tiles.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>javax.servlet</groupId>-->
<!--<artifactId>jstl</artifactId>-->
<!--<version>${javax.servlet.version}</version>-->
<!--</dependency>-->
<!-- Specification Argument Resolver -->
<dependency>
<groupId>net.kaczmarzyk</groupId>
<artifactId>specification-arg-resolver</artifactId>
<version>${specification-arg-resolver.version}</version>
</dependency>
<!-- Spring Data Jpa - Specification with Projections Support -->
<!-- https://github.com/pramoth/specification-with-projection -->
<dependency>
<groupId>th.co.geniustree.springdata.jpa</groupId>
<artifactId>specification-with-projections</artifactId>
<version>${specification-with-projections.version}</version>
</dependency>
<!-- Thymeleaf Layout Dialect -->
<dependency>
<groupId>nz.net.ultraq.thymeleaf</groupId>
<artifactId>thymeleaf-layout-dialect</artifactId>
<version>${thymeleaf-layout-dialect.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>