source: pom.xml

Last change on this file was d3cf3a1, checked in by Marija Micevska <marija_micevska@…>, 22 months ago

Initial commit

  • Property mode set to 100644
File size: 6.0 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>project</groupId>
12 <artifactId>educatum</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>educatum</name>
15 <description>educatum</description>
16 <properties>
17 <java.version>11</java.version>
18 </properties>
19 <dependencies>
20 <dependency>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <version>3.8.1</version>
24 </dependency>
25 <dependency>
26 <groupId>org.springframework.security.oauth.boot</groupId>
27 <artifactId>spring-security-oauth2-autoconfigure</artifactId>
28 <version>2.1.5.RELEASE</version>
29 </dependency>
30 <dependency>
31 <groupId>org.springframework.boot</groupId>
32 <artifactId>spring-boot-starter-tomcat</artifactId>
33 </dependency>
34 <dependency>
35 <groupId>org.springframework.boot</groupId>
36 <artifactId>spring-boot-starter-thymeleaf</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-web</artifactId>
41 </dependency>
42
43 <dependency>
44 <groupId>org.springframework.boot</groupId>
45 <artifactId>spring-boot-starter-oauth2-client</artifactId>
46 </dependency>
47
48 <dependency>
49 <groupId>org.springframework.boot</groupId>
50 <artifactId>spring-boot-starter-data-jpa</artifactId>
51
52 </dependency>
53
54 <dependency>
55 <groupId>com.h2database</groupId>
56 <artifactId>h2</artifactId>
57
58 </dependency>
59 <dependency>
60 <groupId>org.postgresql</groupId>
61 <artifactId>postgresql</artifactId>
62
63 </dependency>
64
65 <dependency>
66 <groupId>org.projectlombok</groupId>
67 <artifactId>lombok</artifactId>
68 <optional>true</optional>
69 </dependency>
70 <dependency>
71 <groupId>org.springframework.boot</groupId>
72 <artifactId>spring-boot-starter-test</artifactId>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.webjars</groupId>
77 <artifactId>webjars-locator-core</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.webjars</groupId>
81 <artifactId>jquery</artifactId>
82 <version>3.6.0</version>
83 </dependency>
84 <dependency>
85 <groupId>org.webjars</groupId>
86 <artifactId>bootstrap</artifactId>
87 <version>3.2.0</version>
88 </dependency>
89 <dependency>
90 <groupId>org.springframework.boot</groupId>
91 <artifactId>spring-boot-starter-security</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.thymeleaf.extras</groupId>
95 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
96 </dependency>
97
98
99 <dependency>
100 <groupId>org.springframework.boot</groupId>
101 <artifactId>spring-boot-starter-data-jpa</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>org.springframework.boot</groupId>
105 <artifactId>spring-boot-starter-security</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>org.springframework.boot</groupId>
109 <artifactId>spring-boot-starter-thymeleaf</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>org.springframework.boot</groupId>
113 <artifactId>spring-boot-starter-web</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>org.thymeleaf.extras</groupId>
117 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
118 </dependency>
119
120 <dependency>
121 <groupId>org.postgresql</groupId>
122 <artifactId>postgresql</artifactId>
123 <scope>runtime</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.projectlombok</groupId>
127 <artifactId>lombok</artifactId>
128 <optional>true</optional>
129 </dependency>
130 <dependency>
131 <groupId>org.springframework.boot</groupId>
132 <artifactId>spring-boot-starter-test</artifactId>
133 <scope>test</scope>
134 </dependency>
135 <dependency>
136 <groupId>org.springframework.security</groupId>
137 <artifactId>spring-security-test</artifactId>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.springframework.boot</groupId>
142 <artifactId>spring-boot-starter-mail</artifactId>
143 </dependency>
144 </dependencies>
145
146 <build>
147 <plugins>
148 <plugin>
149 <groupId>org.springframework.boot</groupId>
150 <artifactId>spring-boot-maven-plugin</artifactId>
151 <version>${parent.version}</version>
152 <configuration>
153 <excludes>
154 <exclude>
155 <groupId>org.projectlombok</groupId>
156 <artifactId>lombok</artifactId>
157 </exclude>
158 </excludes>
159 </configuration>
160 </plugin>
161 <plugin>
162 <groupId>org.apache.maven.plugins</groupId>
163 <artifactId>maven-compiler-plugin</artifactId>
164 <configuration>
165 <source>15</source>
166 <target>15</target>
167 </configuration>
168 </plugin>
169 </plugins>
170 </build>
171
172</project>
Note: See TracBrowser for help on using the repository browser.