|
| 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 | + <groupId>io.github.reqstool.example</groupId> |
| 7 | + <artifactId>mypackage</artifactId> |
| 8 | + <version>0.1.0</version> |
| 9 | + <name>mypackage</name> |
| 10 | + <description>Minimal test project for reqstool-java-maven-plugin</description> |
| 11 | + |
| 12 | + <properties> |
| 13 | + <java.version>21</java.version> |
| 14 | + <maven.compiler.source>21</maven.compiler.source> |
| 15 | + <maven.compiler.target>21</maven.compiler.target> |
| 16 | + <maven.test.failure.ignore>true</maven.test.failure.ignore> |
| 17 | + </properties> |
| 18 | + |
| 19 | + <dependencies> |
| 20 | + <dependency> |
| 21 | + <groupId>io.github.reqstool</groupId> |
| 22 | + <artifactId>reqstool-java-annotations</artifactId> |
| 23 | + <version>1.0.0</version> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>org.junit.jupiter</groupId> |
| 27 | + <artifactId>junit-jupiter-api</artifactId> |
| 28 | + <version>6.0.3</version> |
| 29 | + <scope>test</scope> |
| 30 | + </dependency> |
| 31 | + </dependencies> |
| 32 | + |
| 33 | + <build> |
| 34 | + <plugins> |
| 35 | + <plugin> |
| 36 | + <artifactId>maven-compiler-plugin</artifactId> |
| 37 | + <version>3.15.0</version> |
| 38 | + <configuration> |
| 39 | + <annotationProcessorPaths> |
| 40 | + <path> |
| 41 | + <groupId>io.github.reqstool</groupId> |
| 42 | + <artifactId>reqstool-java-annotations</artifactId> |
| 43 | + <version>1.0.0</version> |
| 44 | + </path> |
| 45 | + </annotationProcessorPaths> |
| 46 | + </configuration> |
| 47 | + </plugin> |
| 48 | + <plugin> |
| 49 | + <groupId>org.apache.maven.plugins</groupId> |
| 50 | + <artifactId>maven-surefire-plugin</artifactId> |
| 51 | + <version>3.5.5</version> |
| 52 | + </plugin> |
| 53 | + <plugin> |
| 54 | + <groupId>io.github.reqstool</groupId> |
| 55 | + <artifactId>reqstool-maven-plugin</artifactId> |
| 56 | + <version>1.0.4</version> |
| 57 | + <executions> |
| 58 | + <execution> |
| 59 | + <goals> |
| 60 | + <goal>assemble-and-attach-zip-artifact</goal> |
| 61 | + </goals> |
| 62 | + </execution> |
| 63 | + </executions> |
| 64 | + <configuration> |
| 65 | + <datasetPath>${project.basedir}/docs/reqstool</datasetPath> |
| 66 | + <testResults> |
| 67 | + <testResult>target/surefire-reports/*.xml</testResult> |
| 68 | + </testResults> |
| 69 | + </configuration> |
| 70 | + </plugin> |
| 71 | + </plugins> |
| 72 | + </build> |
| 73 | +</project> |
0 commit comments