|
| 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 | + <groupId>org.springframework.boot.maven.it</groupId> |
| 6 | + <artifactId>aot-development-only-exclusions</artifactId> |
| 7 | + <version>0.0.1.BUILD-SNAPSHOT</version> |
| 8 | + <properties> |
| 9 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 10 | + <maven.compiler.source>@java.version@</maven.compiler.source> |
| 11 | + <maven.compiler.target>@java.version@</maven.compiler.target> |
| 12 | + </properties> |
| 13 | + <build> |
| 14 | + <plugins> |
| 15 | + <plugin> |
| 16 | + <groupId>@project.groupId@</groupId> |
| 17 | + <artifactId>@project.artifactId@</artifactId> |
| 18 | + <version>@project.version@</version> |
| 19 | + <executions> |
| 20 | + <execution> |
| 21 | + <goals> |
| 22 | + <goal>process-aot</goal> |
| 23 | + </goals> |
| 24 | + </execution> |
| 25 | + </executions> |
| 26 | + </plugin> |
| 27 | + </plugins> |
| 28 | + </build> |
| 29 | + <dependencies> |
| 30 | + <dependency> |
| 31 | + <groupId>org.springframework.boot</groupId> |
| 32 | + <artifactId>spring-boot</artifactId> |
| 33 | + <version>@project.version@</version> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>jakarta.servlet</groupId> |
| 37 | + <artifactId>jakarta.servlet-api</artifactId> |
| 38 | + <version>@jakarta-servlet.version@</version> |
| 39 | + <scope>provided</scope> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework.boot</groupId> |
| 43 | + <artifactId>spring-boot-devtools</artifactId> |
| 44 | + <version>@project.version@</version> |
| 45 | + <optional>true</optional> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.springframework.boot</groupId> |
| 49 | + <artifactId>spring-boot-docker-compose</artifactId> |
| 50 | + <version>@project.version@</version> |
| 51 | + <optional>true</optional> |
| 52 | + </dependency> |
| 53 | + </dependencies> |
| 54 | +</project> |
0 commit comments