source: pom.xml

main
Last change on this file was d14176d, checked in by HristijanMitic00 <hristijan.mitic.01@…>, 15 months ago

First commit

  • Property mode set to 100644
File size: 3.8 KB
RevLine 
[1dd9226]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.7.5</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>project.FMO.app</groupId>
12 <artifactId>projcetFMO</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>projcetFMO</name>
15 <description>projcetFMO</description>
16 <properties>
17 <java.version>17</java.version>
18 </properties>
19 <dependencies>
[d14176d]20
[1dd9226]21 <dependency>
22 <groupId>org.springframework.boot</groupId>
[d14176d]23 <artifactId>spring-boot-starter-thymeleaf</artifactId>
[1dd9226]24 </dependency>
[d14176d]25
[1dd9226]26 <dependency>
27 <groupId>org.springframework.boot</groupId>
[d14176d]28 <artifactId>spring-boot-starter-web</artifactId>
[1dd9226]29 </dependency>
[d14176d]30
[1dd9226]31 <dependency>
32 <groupId>org.springframework.boot</groupId>
[d14176d]33 <artifactId>spring-boot-starter-data-jpa</artifactId>
[1dd9226]34 </dependency>
[d14176d]35
36 <dependency>
37 <groupId>org.flywaydb</groupId>
38 <artifactId>flyway-maven-plugin</artifactId>
39 <version>6.2.3</version>
40 </dependency>
41
42
[1dd9226]43 <dependency>
44 <groupId>org.springframework.boot</groupId>
[d14176d]45 <artifactId>spring-boot-starter-security</artifactId>
[1dd9226]46 </dependency>
[d14176d]47
[1dd9226]48 <dependency>
49 <groupId>org.thymeleaf.extras</groupId>
50 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
51 </dependency>
52
[d14176d]53 <dependency>
54 <groupId>com.h2database</groupId>
55 <artifactId>h2</artifactId>
56 </dependency>
57
58
[1dd9226]59 <dependency>
60 <groupId>org.postgresql</groupId>
61 <artifactId>postgresql</artifactId>
62 </dependency>
63
64
65 <dependency>
66 <groupId>org.projectlombok</groupId>
67 <artifactId>lombok</artifactId>
68 <optional>true</optional>
69 </dependency>
[d14176d]70
71 <dependency>
72 <groupId>com.auth0</groupId>
73 <artifactId>java-jwt</artifactId>
74 <version>3.7.0</version>
75 </dependency>
76
[1dd9226]77 <dependency>
78 <groupId>org.springframework.boot</groupId>
79 <artifactId>spring-boot-starter-test</artifactId>
80 <scope>test</scope>
[d14176d]81 <exclusions>
82 <exclusion>
83 <groupId>org.junit.vintage</groupId>
84 <artifactId>junit-vintage-engine</artifactId>
85 </exclusion>
86 </exclusions>
[1dd9226]87 </dependency>
[d14176d]88
[1dd9226]89 <dependency>
[d14176d]90 <groupId>junit</groupId>
91 <artifactId>junit</artifactId>
92 </dependency>
93
94 <dependency>
95 <groupId>org.seleniumhq.selenium</groupId>
96 <artifactId>selenium-java</artifactId>
[1dd9226]97 </dependency>
[d14176d]98
99 <dependency>
100 <groupId>org.seleniumhq.selenium</groupId>
101 <artifactId>htmlunit-driver</artifactId>
102 </dependency>
103
[1dd9226]104 </dependencies>
105
106 <build>
107 <plugins>
108 <plugin>
109 <groupId>org.springframework.boot</groupId>
110 <artifactId>spring-boot-maven-plugin</artifactId>
111 <configuration>
112 <excludes>
113 <exclude>
114 <groupId>org.projectlombok</groupId>
115 <artifactId>lombok</artifactId>
116 </exclude>
117 </excludes>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
122
123</project>
Note: See TracBrowser for help on using the repository browser.