source: trip-planner/pom.xml@ fa375fe

Last change on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 4.4 KB
Line 
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.5.0</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>finki.diplomska.tripplanner</groupId>
12 <artifactId>trip-planner</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <packaging>war</packaging>
15 <name>trip-planner</name>
16 <description>Demo project for Spring Boot</description>
17 <properties>
18 <java.version>1.8</java.version>
19 </properties>
20 <dependencies>
21 <dependency>
22 <groupId>org.springframework.boot</groupId>
23 <artifactId>spring-boot-starter-data-rest</artifactId>
24 </dependency>
25 <dependency>
26 <groupId>org.springframework.boot</groupId>
27 <artifactId>spring-boot-starter-thymeleaf</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>org.springframework.boot</groupId>
31 <artifactId>spring-boot-starter-web</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-webflux</artifactId>
36 </dependency>
37
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-devtools</artifactId>
41 <scope>runtime</scope>
42 <optional>true</optional>
43 </dependency>
44 <dependency>
45 <groupId>org.mariadb.jdbc</groupId>
46 <artifactId>mariadb-java-client</artifactId>
47 <scope>runtime</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.projectlombok</groupId>
51 <artifactId>lombok</artifactId>
52 <optional>true</optional>
53 </dependency>
54 <dependency>
55 <groupId>org.springframework.boot</groupId>
56 <artifactId>spring-boot-starter-tomcat</artifactId>
57 <scope>provided</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework.boot</groupId>
61 <artifactId>spring-boot-starter-test</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>io.projectreactor</groupId>
66 <artifactId>reactor-test</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-starter-data-jpa</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>finki.diplomska.tripplanner</groupId>
75 <artifactId>trip-planner</artifactId>
76 <version>0.0.1-SNAPSHOT</version>
77 </dependency>
78
79 <dependency>
80 <groupId>com.github.ulisesbocchio</groupId>
81 <artifactId>jasypt-spring-boot-starter</artifactId>
82 <version>3.0.3</version>
83 </dependency>
84 </dependencies>
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-failsafe-plugin</artifactId>
91 <executions>
92 <execution>
93 <goals>
94 <goal>integration-test</goal>
95 <goal>verify</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
100 <plugin>
101 <groupId>org.springframework.boot</groupId>
102 <artifactId>spring-boot-maven-plugin</artifactId>
103 <configuration>
104 <excludes>
105 <exclude>
106 <groupId>org.projectlombok</groupId>
107 <artifactId>lombok</artifactId>
108 </exclude>
109 </excludes>
110 </configuration>
111 </plugin>
112 <plugin>
113 <groupId>com.github.ulisesbocchio</groupId>
114 <artifactId>jasypt-maven-plugin</artifactId>
115 <version>3.0.3</version>
116 </plugin>
117 </plugins>
118 </build>
119
120</project>
Note: See TracBrowser for help on using the repository browser.