source: pom.xml@ 4fd6e1a

main
Last change on this file since 4fd6e1a was 4fd6e1a, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Testing

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[75464a6]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>
[ae042f4]8 <version>2.7.4</version>
[75464a6]9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.example</groupId>
12 <artifactId>AutoPartz</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>AutoPartz</name>
15 <description>AutoPartz</description>
16 <properties>
[4fd6e1a]17 <java.version>17.0.5</java.version>
[ae042f4]18 <spring-security.version>5.6.1</spring-security.version>
[75464a6]19 </properties>
20 <dependencies>
21 <dependency>
22 <groupId>org.springframework.boot</groupId>
23 <artifactId>spring-boot-starter-data-jpa</artifactId>
24 </dependency>
[7d43957]25 <dependency>
26 <groupId>org.thymeleaf.extras</groupId>
27 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
28 </dependency>
[75464a6]29 <dependency>
30 <groupId>org.springframework.boot</groupId>
31 <artifactId>spring-boot-starter-thymeleaf</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-web</artifactId>
36 </dependency>
[ae042f4]37 <dependency>
38 <groupId>javax.servlet</groupId>
39 <artifactId>javax.servlet-api</artifactId>
40 <version>4.0.1</version>
41 <scope>provided</scope>
42 </dependency>
43
[75464a6]44
45 <dependency>
46 <groupId>org.postgresql</groupId>
47 <artifactId>postgresql</artifactId>
48 <scope>runtime</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.projectlombok</groupId>
52 <artifactId>lombok</artifactId>
[5e7345e]53 <version>1.18.24</version>
54 <scope>provided</scope>
[75464a6]55 <optional>true</optional>
56 </dependency>
57 <dependency>
58 <groupId>org.springframework.boot</groupId>
59 <artifactId>spring-boot-starter-test</artifactId>
60 <scope>test</scope>
61 </dependency>
[ae042f4]62 <dependency>
63 <groupId>org.springframework.boot</groupId>
64 <artifactId>spring-boot-starter-security</artifactId>
65 </dependency>
[75464a6]66 </dependencies>
67
[ae042f4]68
[75464a6]69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.springframework.boot</groupId>
73 <artifactId>spring-boot-maven-plugin</artifactId>
74 <configuration>
75 <excludes>
76 <exclude>
77 <groupId>org.projectlombok</groupId>
78 <artifactId>lombok</artifactId>
79 </exclude>
80 </excludes>
81 </configuration>
82 </plugin>
[5e7345e]83 <plugin>
84 <groupId>com.google.cloud.tools</groupId>
85 <artifactId>appengine-maven-plugin</artifactId>
86 <version>2.2.0</version>
87 <configuration>
88 <version>1</version>
89 <projectId>GCLOUD_CONFIG</projectId>
90 </configuration>
91 </plugin>
[75464a6]92 </plugins>
93 </build>
94
95</project>
Note: See TracBrowser for help on using the repository browser.