source: Git/pom.xml@ 5b447b0

main
Last change on this file since 5b447b0 was e0ef1b1, checked in by Test <matonikolov77@…>, 2 years ago

Added CRUD for movies,persons,discussion,replies,genres
Added ajaxcalls

  • Property mode set to 100644
File size: 3.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.6.2</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.wediscussmovies</groupId>
12 <artifactId>project</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>WeDiscussMovies</name>
15 <description>WeDiscussMovies</description>
16 <properties>
17 <java.version>11</java.version>
18 </properties>
19 <dependencies>
20 <dependency>
21 <groupId>org.springframework.boot</groupId>
22 <artifactId>spring-boot-starter-jdbc</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-security</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-thymeleaf</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-web</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.thymeleaf.extras</groupId>
38 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
39 </dependency>
40
41 <dependency>
42 <groupId>org.postgresql</groupId>
43 <artifactId>postgresql</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.projectlombok</groupId>
47 <artifactId>lombok</artifactId>
48 <optional>true</optional>
49 </dependency>
50 <dependency>
51 <groupId>org.springframework.boot</groupId>
52 <artifactId>spring-boot-starter-test</artifactId>
53 <scope>test</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.springframework.security</groupId>
57 <artifactId>spring-security-test</artifactId>
58 <scope>test</scope>
59 </dependency>
60
61 <dependency>
62 <groupId>org.springframework.boot</groupId>
63 <artifactId>spring-boot-starter-data-jpa</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.springframework.boot</groupId>
67 <artifactId>spring-boot-actuator</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>com.h2database</groupId>
71 <artifactId>h2</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>com.jcraft</groupId>
75 <artifactId>jsch</artifactId>
76 <version>0.1.55</version>
77 </dependency>
78 </dependencies>
79
80
81 <build>
82 <plugins>
83 <plugin>
84 <groupId>org.springframework.boot</groupId>
85 <artifactId>spring-boot-maven-plugin</artifactId>
86 <configuration>
87 <excludes>
88 <exclude>
89 <groupId>org.projectlombok</groupId>
90 <artifactId>lombok</artifactId>
91 </exclude>
92 </excludes>
93 </configuration>
94 </plugin>
95 </plugins>
96 </build>
97
98</project>
Note: See TracBrowser for help on using the repository browser.