-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
75 lines (70 loc) · 3.2 KB
/
Copy pathpom.xml
File metadata and controls
75 lines (70 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.schlau.pesche</groupId>
<artifactId>apidocs</artifactId>
<version>0.9-SNAPSHOT</version>
<name>apidocs</name>
<packaging>pom</packaging>
<modules>
<module>code-first-openapi-quarkus</module>
<module>code-first-swagger</module>
<module>design-first-openapi-generator</module>
<module>design-first-quarkiverse</module>
<module>design-first-swagger-quarkus</module>
</modules>
<properties>
<minimum-maven-version>3.6.3</minimum-maven-version>
<maven.enforcer.plugin.version>3.6.2</maven.enforcer.plugin.version>
<rewrite.plugin.version>6.23.0</rewrite.plugin.version>
<rewrite.migrate-java.version>3.21.2</rewrite.migrate-java.version>
<rewrite.third-party.version>0.31.1</rewrite.third-party.version>
</properties>
<build>
<plugins>
<plugin>
<!-- run it with `mvn org.openrewrite.maven:rewrite-maven-plugin:run -pl '!.'` -->
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>${rewrite.plugin.version}</version>
<configuration>
<activeRecipes>
<recipe>org.openrewrite.java.migrate.UpgradeToJava25</recipe>
<!--<recipe>org.openrewrite.quarkus.MigrateToQuarkus_v3_26_0</recipe>-->
</activeRecipes>
</configuration>
<dependencies>
<dependency>
<groupId>org.openrewrite.recipe</groupId>
<artifactId>rewrite-migrate-java</artifactId>
<version>${rewrite.migrate-java.version}</version>
</dependency>
<dependency>
<groupId>org.openrewrite.recipe</groupId>
<artifactId>rewrite-third-party</artifactId>
<version>${rewrite.third-party.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven.enforcer.plugin.version}</version>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>${minimum-maven-version}</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>