| 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>3.4.3</version>
|
|---|
| 9 | <relativePath/>
|
|---|
| 10 | </parent>
|
|---|
| 11 | <groupId>mk.ukim.finki.it</groupId>
|
|---|
| 12 | <artifactId>ReserveNGo</artifactId>
|
|---|
| 13 | <version>0.0.1-SNAPSHOT</version>
|
|---|
| 14 | <name>ReserveNGo</name>
|
|---|
| 15 | <description>ReserveNGo</description>
|
|---|
| 16 | <url/>
|
|---|
| 17 | <licenses>
|
|---|
| 18 | <license/>
|
|---|
| 19 | </licenses>
|
|---|
| 20 | <developers>
|
|---|
| 21 | <developer/>
|
|---|
| 22 | </developers>
|
|---|
| 23 | <scm>
|
|---|
| 24 | <connection/>
|
|---|
| 25 | <developerConnection/>
|
|---|
| 26 | <tag/>
|
|---|
| 27 | <url/>
|
|---|
| 28 | </scm>
|
|---|
| 29 | <properties>
|
|---|
| 30 | <java.version>21</java.version>
|
|---|
| 31 | </properties>
|
|---|
| 32 | <dependencies>
|
|---|
| 33 | <dependency>
|
|---|
| 34 | <groupId>org.projectlombok</groupId>
|
|---|
| 35 | <artifactId>lombok</artifactId>
|
|---|
| 36 | <version>1.18.36</version>
|
|---|
| 37 | <scope>provided</scope>
|
|---|
| 38 | </dependency>
|
|---|
| 39 | <dependency>
|
|---|
| 40 | <groupId>org.springframework.boot</groupId>
|
|---|
| 41 | <artifactId>spring-boot-starter-web</artifactId>
|
|---|
| 42 | </dependency>
|
|---|
| 43 | <dependency>
|
|---|
| 44 | <groupId>org.springframework.boot</groupId>
|
|---|
| 45 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|---|
| 46 | </dependency>
|
|---|
| 47 | <dependency>
|
|---|
| 48 | <groupId>org.springframework.boot</groupId>
|
|---|
| 49 | <artifactId>spring-boot-starter-security</artifactId>
|
|---|
| 50 | </dependency>
|
|---|
| 51 | <dependency>
|
|---|
| 52 | <groupId>org.postgresql</groupId>
|
|---|
| 53 | <artifactId>postgresql</artifactId>
|
|---|
| 54 | <scope>runtime</scope>
|
|---|
| 55 | </dependency>
|
|---|
| 56 | <dependency>
|
|---|
| 57 | <groupId>io.jsonwebtoken</groupId>
|
|---|
| 58 | <artifactId>jjwt-api</artifactId>
|
|---|
| 59 | <version>0.11.5</version>
|
|---|
| 60 | </dependency>
|
|---|
| 61 | <dependency>
|
|---|
| 62 | <groupId>io.jsonwebtoken</groupId>
|
|---|
| 63 | <artifactId>jjwt-impl</artifactId>
|
|---|
| 64 | <version>0.11.5</version>
|
|---|
| 65 | </dependency>
|
|---|
| 66 | <dependency>
|
|---|
| 67 | <groupId>io.jsonwebtoken</groupId>
|
|---|
| 68 | <artifactId>jjwt-jackson</artifactId>
|
|---|
| 69 | <version>0.11.5</version>
|
|---|
| 70 | </dependency>
|
|---|
| 71 | <dependency>
|
|---|
| 72 | <groupId>com.h2database</groupId>
|
|---|
| 73 | <artifactId>h2</artifactId>
|
|---|
| 74 | </dependency>
|
|---|
| 75 | <dependency>
|
|---|
| 76 | <groupId>org.springframework.boot</groupId>
|
|---|
| 77 | <artifactId>spring-boot-starter-mail</artifactId>
|
|---|
| 78 | <version>3.4.3</version>
|
|---|
| 79 | </dependency>
|
|---|
| 80 | <dependency>
|
|---|
| 81 | <groupId>org.springframework.boot</groupId>
|
|---|
| 82 | <artifactId>spring-boot-starter-test</artifactId>
|
|---|
| 83 | <scope>test</scope>
|
|---|
| 84 | </dependency>
|
|---|
| 85 | </dependencies>
|
|---|
| 86 | <build>
|
|---|
| 87 | <plugins>
|
|---|
| 88 | <plugin>
|
|---|
| 89 | <groupId>org.apache.maven.plugins</groupId>
|
|---|
| 90 | <artifactId>maven-compiler-plugin</artifactId>
|
|---|
| 91 | <configuration>
|
|---|
| 92 | <annotationProcessorPaths>
|
|---|
| 93 | <path>
|
|---|
| 94 | <groupId>org.projectlombok</groupId>
|
|---|
| 95 | <artifactId>lombok</artifactId>
|
|---|
| 96 | <version>1.18.36</version>
|
|---|
| 97 | </path>
|
|---|
| 98 | </annotationProcessorPaths>
|
|---|
| 99 | </configuration>
|
|---|
| 100 | </plugin>
|
|---|
| 101 | <plugin>
|
|---|
| 102 | <groupId>org.springframework.boot</groupId>
|
|---|
| 103 | <artifactId>spring-boot-maven-plugin</artifactId>
|
|---|
| 104 | <configuration>
|
|---|
| 105 | <excludes>
|
|---|
| 106 | <exclude>
|
|---|
| 107 | <groupId>org.projectlombok</groupId>
|
|---|
| 108 | <artifactId>lombok</artifactId>
|
|---|
| 109 | </exclude>
|
|---|
| 110 | </excludes>
|
|---|
| 111 | </configuration>
|
|---|
| 112 | </plugin>
|
|---|
| 113 | </plugins>
|
|---|
| 114 | </build>
|
|---|
| 115 |
|
|---|
| 116 | </project>
|
|---|