source: trip-planner/pom.xml@ 6c1585f

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

edit planner form with angular

  • 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 <dependency>
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-devtools</artifactId>
40 <scope>runtime</scope>
41 <optional>true</optional>
42 </dependency>
43 <dependency>
44 <groupId>org.mariadb.jdbc</groupId>
45 <artifactId>mariadb-java-client</artifactId>
46 <scope>runtime</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.projectlombok</groupId>
50 <artifactId>lombok</artifactId>
51 <optional>true</optional>
52 </dependency>
53 <dependency>
54 <groupId>org.springframework.boot</groupId>
55 <artifactId>spring-boot-starter-tomcat</artifactId>
56 <scope>provided</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.springframework.boot</groupId>
60 <artifactId>spring-boot-starter-test</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>io.projectreactor</groupId>
65 <artifactId>reactor-test</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.springframework.boot</groupId>
70 <artifactId>spring-boot-starter-data-jpa</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>finki.diplomska.tripplanner</groupId>
74 <artifactId>trip-planner</artifactId>
75 <version>0.0.1-SNAPSHOT</version>
76 </dependency>
77 <dependency>
78 <groupId>com.github.ulisesbocchio</groupId>
79 <artifactId>jasypt-spring-boot-starter</artifactId>
80 <version>3.0.3</version>
81 </dependency>
82 </dependencies>
83
84 <build>
85 <plugins>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-failsafe-plugin</artifactId>
89 <executions>
90 <execution>
91 <goals>
92 <goal>integration-test</goal>
93 <goal>verify</goal>
94 </goals>
95 </execution>
96 </executions>
97 </plugin>
98 <plugin>
99 <groupId>org.springframework.boot</groupId>
100 <artifactId>spring-boot-maven-plugin</artifactId>
101 <configuration>
102 <excludes>
103 <exclude>
104 <groupId>org.projectlombok</groupId>
105 <artifactId>lombok</artifactId>
106 </exclude>
107 </excludes>
108 </configuration>
109 </plugin>
110 <plugin>
111 <groupId>com.github.ulisesbocchio</groupId>
112 <artifactId>jasypt-maven-plugin</artifactId>
113 <version>3.0.3</version>
114 </plugin>
115 </plugins>
116 </build>
117
118</project>
Note: See TracBrowser for help on using the repository browser.