|
| 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.3.4</version> |
| 9 | + <relativePath/> <!-- lookup parent from repository --> |
| 10 | + </parent> |
| 11 | + <groupId>com.javatechie</groupId> |
| 12 | + <artifactId>budget-buddy</artifactId> |
| 13 | + <version>0.0.1-SNAPSHOT</version> |
| 14 | + <name>budget-buddy</name> |
| 15 | + <description>Demo project for Spring Boot</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.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework.boot</groupId> |
| 39 | + <artifactId>spring-boot-starter-web</artifactId> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>gg.jte</groupId> |
| 43 | + <artifactId>jte</artifactId> |
| 44 | + <version>3.1.12</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>gg.jte</groupId> |
| 48 | + <artifactId>jte-spring-boot-starter-3</artifactId> |
| 49 | + <version>3.1.12</version> |
| 50 | + </dependency> |
| 51 | + |
| 52 | + <dependency> |
| 53 | + <groupId>com.mysql</groupId> |
| 54 | + <artifactId>mysql-connector-j</artifactId> |
| 55 | + <scope>runtime</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.projectlombok</groupId> |
| 59 | + <artifactId>lombok</artifactId> |
| 60 | + <optional>true</optional> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.springframework.boot</groupId> |
| 64 | + <artifactId>spring-boot-starter-test</artifactId> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | + |
| 69 | + <build> |
| 70 | + <plugins> |
| 71 | + <plugin> |
| 72 | + <groupId>gg.jte</groupId> |
| 73 | + <artifactId>jte-maven-plugin</artifactId> |
| 74 | + <version>3.1.12</version> |
| 75 | + <executions> |
| 76 | + <execution> |
| 77 | + <id>jte-generate</id> |
| 78 | + <phase>generate-sources</phase> |
| 79 | + <goals> |
| 80 | + <goal>generate</goal> |
| 81 | + </goals> |
| 82 | + <configuration> |
| 83 | + <sourceDirectory>${project.basedir}/src/main/jte</sourceDirectory> |
| 84 | + <contentType>Html</contentType> |
| 85 | + <binaryStaticContent>true</binaryStaticContent> |
| 86 | + <targetResourceDirectory>${project.build.outputDirectory}</targetResourceDirectory> |
| 87 | + </configuration> |
| 88 | + </execution> |
| 89 | + </executions> |
| 90 | + </plugin> |
| 91 | + <plugin> |
| 92 | + <groupId>org.springframework.boot</groupId> |
| 93 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 94 | + <configuration> |
| 95 | + <excludes> |
| 96 | + <exclude> |
| 97 | + <groupId>org.projectlombok</groupId> |
| 98 | + <artifactId>lombok</artifactId> |
| 99 | + </exclude> |
| 100 | + </excludes> |
| 101 | + </configuration> |
| 102 | + </plugin> |
| 103 | + </plugins> |
| 104 | + </build> |
| 105 | + |
| 106 | +</project> |
0 commit comments