|
6 | 6 | <version>1.0.0-SNAPSHOT</version> |
7 | 7 |
|
8 | 8 | <properties> |
9 | | - <maven.compiler.release>21</maven.compiler.release> |
| 9 | + <maven.compiler.release>17</maven.compiler.release> |
10 | 10 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
11 | 11 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
12 | 12 |
|
|
15 | 15 | <skipITs>true</skipITs> |
16 | 16 |
|
17 | 17 | <version.compiler-plugin>3.14.0</version.compiler-plugin> |
18 | | - <version.quarkus-roq>1.5.1</version.quarkus-roq> |
| 18 | + <version.quarkus-roq>1.5.4</version.quarkus-roq> |
19 | 19 | <version.quarkus.platform>3.22.1</version.quarkus.platform> |
20 | 20 | <version.surefire-plugin>3.5.2</version.surefire-plugin> |
21 | 21 | </properties> |
|
58 | 58 | <artifactId>quarkus-roq-plugin-asciidoc-jruby</artifactId> |
59 | 59 | <version>${version.quarkus-roq}</version> |
60 | 60 | </dependency> |
61 | | - <dependency> |
62 | | - <groupId>io.quarkiverse.roq</groupId> |
63 | | - <artifactId>quarkus-roq-plugin-tagging</artifactId> |
64 | | - <version>${version.quarkus-roq}</version> |
65 | | - </dependency> |
66 | | - |
67 | 61 | <dependency> |
68 | 62 | <groupId>io.quarkus</groupId> |
69 | 63 | <artifactId>quarkus-arc</artifactId> |
70 | 64 | </dependency> |
71 | | - |
72 | 65 | <dependency> |
73 | 66 | <groupId>io.quarkus</groupId> |
74 | 67 | <artifactId>quarkus-junit5</artifactId> |
|
83 | 76 | </dependencies> |
84 | 77 |
|
85 | 78 | <build> |
| 79 | + <defaultGoal>test</defaultGoal> |
86 | 80 | <plugins> |
| 81 | + <plugin> |
| 82 | + <groupId>org.apache.maven.plugins</groupId> |
| 83 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 84 | + <version>3.5.0</version> |
| 85 | + <executions> |
| 86 | + <execution> |
| 87 | + <id>enforce-java</id> |
| 88 | + <goals> |
| 89 | + <goal>enforce</goal> |
| 90 | + </goals> |
| 91 | + <configuration> |
| 92 | + <rules> |
| 93 | + <requireJavaVersion> |
| 94 | + <version>[${maven.compiler.release},)</version> |
| 95 | + </requireJavaVersion> |
| 96 | + </rules> |
| 97 | + </configuration> |
| 98 | + </execution> |
| 99 | + </executions> |
| 100 | + </plugin> |
87 | 101 | <plugin> |
88 | 102 | <groupId>${quarkus.platform.group-id}</groupId> |
89 | 103 | <artifactId>quarkus-maven-plugin</artifactId> |
|
0 commit comments