|
| 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <parent> |
| 7 | + <artifactId>test-spring-boot-multimodule-reload-time</artifactId> |
| 8 | + <groupId>com.vaadin</groupId> |
| 9 | + <version>24.2-SNAPSHOT</version> |
| 10 | + </parent> |
| 11 | + <artifactId>test-spring-boot-multimodule-reload-time-generator</artifactId> |
| 12 | + <name>The code generator Maven plugin for a Spring boot multimodule reload |
| 13 | + time project |
| 14 | + </name> |
| 15 | + |
| 16 | + <packaging>maven-plugin</packaging> |
| 17 | + <properties> |
| 18 | + <maven.deploy.skip>true</maven.deploy.skip> |
| 19 | + </properties> |
| 20 | + |
| 21 | + <dependencies> |
| 22 | + <dependency> |
| 23 | + <groupId>org.apache.maven</groupId> |
| 24 | + <artifactId>maven-core</artifactId> |
| 25 | + <version>${maven.version}</version> |
| 26 | + <scope>provided</scope> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>org.apache.maven</groupId> |
| 30 | + <artifactId>maven-artifact</artifactId> |
| 31 | + <version>${maven.version}</version> |
| 32 | + <scope>provided</scope> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>org.apache.maven</groupId> |
| 36 | + <artifactId>maven-plugin-api</artifactId> |
| 37 | + <version>${maven.version}</version> |
| 38 | + <scope>provided</scope> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>org.apache.maven.plugin-tools</groupId> |
| 42 | + <artifactId>maven-plugin-annotations</artifactId> |
| 43 | + <scope>provided</scope> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.springframework.boot</groupId> |
| 47 | + <artifactId>spring-boot-starter-mustache</artifactId> |
| 48 | + <version>${spring.boot.version}</version> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.springframework</groupId> |
| 52 | + <artifactId>spring-context</artifactId> |
| 53 | + </dependency> |
| 54 | + </dependencies> |
| 55 | + |
| 56 | + <build> |
| 57 | + <pluginManagement> |
| 58 | + <plugins> |
| 59 | + <plugin> |
| 60 | + <groupId>org.apache.maven.plugins</groupId> |
| 61 | + <artifactId>maven-plugin-plugin</artifactId> |
| 62 | + <version>3.9.0</version> |
| 63 | + <configuration> |
| 64 | + <skipErrorNoDescriptorsFound>true |
| 65 | + </skipErrorNoDescriptorsFound> |
| 66 | + </configuration> |
| 67 | + <executions> |
| 68 | + <execution> |
| 69 | + <id>mojo-descriptor</id> |
| 70 | + <phase>process-classes</phase> |
| 71 | + <goals> |
| 72 | + <goal>descriptor</goal> |
| 73 | + </goals> |
| 74 | + </execution> |
| 75 | + </executions> |
| 76 | + </plugin> |
| 77 | + <plugin> |
| 78 | + <groupId>org.apache.maven.plugins</groupId> |
| 79 | + <artifactId>maven-jar-plugin</artifactId> |
| 80 | + <configuration> |
| 81 | + <archive> |
| 82 | + <manifestFile> |
| 83 | + ${project.build.outputDirectory}/META-INF/MANIFEST.MF |
| 84 | + </manifestFile> |
| 85 | + <index>false</index> |
| 86 | + <manifest> |
| 87 | + <addDefaultImplementationEntries>true |
| 88 | + </addDefaultImplementationEntries> |
| 89 | + </manifest> |
| 90 | + </archive> |
| 91 | + </configuration> |
| 92 | + </plugin> |
| 93 | + </plugins> |
| 94 | + </pluginManagement> |
| 95 | + </build> |
| 96 | + |
| 97 | +</project> |
0 commit comments