|
| 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <parent> |
| 5 | + <artifactId>quarkus-openapi-generator-server-integration-tests-parent</artifactId> |
| 6 | + <groupId>io.quarkiverse.openapi.generator</groupId> |
| 7 | + <version>3.0.0-lts-SNAPSHOT</version> |
| 8 | + <relativePath>../pom.xml</relativePath> |
| 9 | + </parent> |
| 10 | + <modelVersion>4.0.0</modelVersion> |
| 11 | + |
| 12 | + <artifactId>quarkus-openapi-generator-server-integration-tests-codestarts</artifactId> |
| 13 | + <name>Quarkus - Openapi Generator - Server - Integration Tests - Codestarts</name> |
| 14 | + |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>io.quarkiverse.openapi.generator</groupId> |
| 18 | + <artifactId>quarkus-openapi-generator-server</artifactId> |
| 19 | + <version>${project.version}</version> |
| 20 | + </dependency> |
| 21 | + <dependency> |
| 22 | + <groupId>io.quarkus</groupId> |
| 23 | + <artifactId>quarkus-devtools-testing</artifactId> |
| 24 | + <scope>test</scope> |
| 25 | + </dependency> |
| 26 | + </dependencies> |
| 27 | + |
| 28 | + <build> |
| 29 | + <pluginManagement> |
| 30 | + <plugins> |
| 31 | + <plugin> |
| 32 | + <groupId>io.quarkus</groupId> |
| 33 | + <artifactId>quarkus-maven-plugin</artifactId> |
| 34 | + <version>${quarkus.version}</version> |
| 35 | + </plugin> |
| 36 | + <plugin> |
| 37 | + <artifactId>maven-surefire-plugin</artifactId> |
| 38 | + <version>${version.surefire.plugin}</version> |
| 39 | + <configuration> |
| 40 | + <systemPropertyVariables> |
| 41 | + <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
| 42 | + <maven.home>${maven.home}</maven.home> |
| 43 | + <maven.repo>${settings.localRepository}</maven.repo> |
| 44 | + </systemPropertyVariables> |
| 45 | + </configuration> |
| 46 | + </plugin> |
| 47 | + <plugin> |
| 48 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 49 | + <version>${failsafe-plugin.version}</version> |
| 50 | + <configuration> |
| 51 | + <systemPropertyVariables> |
| 52 | + <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
| 53 | + <maven.home>${maven.home}</maven.home> |
| 54 | + <maven.repo>${settings.localRepository}</maven.repo> |
| 55 | + </systemPropertyVariables> |
| 56 | + </configuration> |
| 57 | + </plugin> |
| 58 | + <plugin> |
| 59 | + <artifactId>maven-compiler-plugin</artifactId> |
| 60 | + <version>${compiler-plugin.version}</version> |
| 61 | + <configuration> |
| 62 | + <compilerArgs> |
| 63 | + <arg>-parameters</arg> |
| 64 | + </compilerArgs> |
| 65 | + </configuration> |
| 66 | + </plugin> |
| 67 | + </plugins> |
| 68 | + </pluginManagement> |
| 69 | + <plugins> |
| 70 | + <plugin> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-resources-plugin</artifactId> |
| 73 | + <version>3.3.1</version> <!-- Adjust the version if needed --> |
| 74 | + <executions> |
| 75 | + <execution> |
| 76 | + <id>copy-resources</id> |
| 77 | + <phase>generate-resources</phase> |
| 78 | + <goals> |
| 79 | + <goal>copy-resources</goal> |
| 80 | + </goals> |
| 81 | + <configuration> |
| 82 | + <outputDirectory>${project.build.outputDirectory}</outputDirectory> |
| 83 | + <resources> |
| 84 | + <resource> |
| 85 | + <directory> |
| 86 | + ${project.basedir}/../runtime/src/main/codestarts/quarkus/openapi-generator-codestart/java |
| 87 | + </directory> |
| 88 | + <filtering>false</filtering> |
| 89 | + </resource> |
| 90 | + </resources> |
| 91 | + </configuration> |
| 92 | + </execution> |
| 93 | + </executions> |
| 94 | + </plugin> |
| 95 | + <plugin> |
| 96 | + <groupId>io.quarkus</groupId> |
| 97 | + <artifactId>quarkus-maven-plugin</artifactId> |
| 98 | + <executions> |
| 99 | + <execution> |
| 100 | + <goals> |
| 101 | + <goal>build</goal> |
| 102 | + <goal>generate-code</goal> |
| 103 | + </goals> |
| 104 | + </execution> |
| 105 | + </executions> |
| 106 | + </plugin> |
| 107 | + </plugins> |
| 108 | + </build> |
| 109 | +</project> |
0 commit comments