| 1 | <?xml version="1.0" encoding="UTF-8"?>
|
|---|
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
|---|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|---|
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|---|
| 5 | <modelVersion>4.0.0</modelVersion>
|
|---|
| 6 |
|
|---|
| 7 | <parent>
|
|---|
| 8 | <groupId>org.springframework.boot</groupId>
|
|---|
| 9 | <artifactId>spring-boot-starter-parent</artifactId>
|
|---|
| 10 | <version>3.4.2</version>
|
|---|
| 11 | <relativePath/>
|
|---|
| 12 | </parent>
|
|---|
| 13 |
|
|---|
| 14 | <groupId>mk.finki</groupId>
|
|---|
| 15 | <artifactId>nutritioneer</artifactId>
|
|---|
| 16 | <version>0.1.0-SNAPSHOT</version>
|
|---|
| 17 | <name>nutritioneer</name>
|
|---|
| 18 | <description>Nutrient tracking, recipe sharing and meal planning</description>
|
|---|
| 19 |
|
|---|
| 20 | <properties>
|
|---|
| 21 | <java.version>21</java.version>
|
|---|
| 22 | <jjwt.version>0.12.6</jjwt.version>
|
|---|
| 23 | <springdoc.version>2.7.0</springdoc.version>
|
|---|
| 24 | </properties>
|
|---|
| 25 |
|
|---|
| 26 | <dependencies>
|
|---|
| 27 | <dependency>
|
|---|
| 28 | <groupId>org.springframework.boot</groupId>
|
|---|
| 29 | <artifactId>spring-boot-starter-web</artifactId>
|
|---|
| 30 | </dependency>
|
|---|
| 31 | <dependency>
|
|---|
| 32 | <groupId>org.springframework.boot</groupId>
|
|---|
| 33 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|---|
| 34 | </dependency>
|
|---|
| 35 | <dependency>
|
|---|
| 36 | <groupId>org.springframework.boot</groupId>
|
|---|
| 37 | <artifactId>spring-boot-starter-security</artifactId>
|
|---|
| 38 | </dependency>
|
|---|
| 39 | <dependency>
|
|---|
| 40 | <groupId>org.springframework.boot</groupId>
|
|---|
| 41 | <artifactId>spring-boot-starter-validation</artifactId>
|
|---|
| 42 | </dependency>
|
|---|
| 43 |
|
|---|
| 44 | <dependency>
|
|---|
| 45 | <groupId>org.postgresql</groupId>
|
|---|
| 46 | <artifactId>postgresql</artifactId>
|
|---|
| 47 | <scope>runtime</scope>
|
|---|
| 48 | </dependency>
|
|---|
| 49 |
|
|---|
| 50 | <!-- JWT -->
|
|---|
| 51 | <dependency>
|
|---|
| 52 | <groupId>io.jsonwebtoken</groupId>
|
|---|
| 53 | <artifactId>jjwt-api</artifactId>
|
|---|
| 54 | <version>${jjwt.version}</version>
|
|---|
| 55 | </dependency>
|
|---|
| 56 | <dependency>
|
|---|
| 57 | <groupId>io.jsonwebtoken</groupId>
|
|---|
| 58 | <artifactId>jjwt-impl</artifactId>
|
|---|
| 59 | <version>${jjwt.version}</version>
|
|---|
| 60 | <scope>runtime</scope>
|
|---|
| 61 | </dependency>
|
|---|
| 62 | <dependency>
|
|---|
| 63 | <groupId>io.jsonwebtoken</groupId>
|
|---|
| 64 | <artifactId>jjwt-jackson</artifactId>
|
|---|
| 65 | <version>${jjwt.version}</version>
|
|---|
| 66 | <scope>runtime</scope>
|
|---|
| 67 | </dependency>
|
|---|
| 68 |
|
|---|
| 69 | <!-- OpenAPI / Swagger UI at /swagger-ui.html -->
|
|---|
| 70 | <dependency>
|
|---|
| 71 | <groupId>org.springdoc</groupId>
|
|---|
| 72 | <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|---|
| 73 | <version>${springdoc.version}</version>
|
|---|
| 74 | </dependency>
|
|---|
| 75 |
|
|---|
| 76 | <dependency>
|
|---|
| 77 | <groupId>org.projectlombok</groupId>
|
|---|
| 78 | <artifactId>lombok</artifactId>
|
|---|
| 79 | <optional>true</optional>
|
|---|
| 80 | </dependency>
|
|---|
| 81 |
|
|---|
| 82 | <dependency>
|
|---|
| 83 | <groupId>org.springframework.boot</groupId>
|
|---|
| 84 | <artifactId>spring-boot-starter-test</artifactId>
|
|---|
| 85 | <scope>test</scope>
|
|---|
| 86 | </dependency>
|
|---|
| 87 | <dependency>
|
|---|
| 88 | <groupId>org.springframework.security</groupId>
|
|---|
| 89 | <artifactId>spring-security-test</artifactId>
|
|---|
| 90 | <scope>test</scope>
|
|---|
| 91 | </dependency>
|
|---|
| 92 | </dependencies>
|
|---|
| 93 |
|
|---|
| 94 | <build>
|
|---|
| 95 | <plugins>
|
|---|
| 96 | <plugin>
|
|---|
| 97 | <groupId>org.springframework.boot</groupId>
|
|---|
| 98 | <artifactId>spring-boot-maven-plugin</artifactId>
|
|---|
| 99 | <configuration>
|
|---|
| 100 | <excludes>
|
|---|
| 101 | <exclude>
|
|---|
| 102 | <groupId>org.projectlombok</groupId>
|
|---|
| 103 | <artifactId>lombok</artifactId>
|
|---|
| 104 | </exclude>
|
|---|
| 105 | </excludes>
|
|---|
| 106 | </configuration>
|
|---|
| 107 | </plugin>
|
|---|
| 108 | </plugins>
|
|---|
| 109 | </build>
|
|---|
| 110 | </project>
|
|---|