File tree 2 files changed +30
-0
lines changed
springdoc-openapi-tests/springdoc-openapi-kotlin-webmvc-tests
src/test/kotlin/test/org/springdoc/api/app12
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 78
78
</dependency >
79
79
</dependencies >
80
80
</plugin >
81
+ <plugin >
82
+ <groupId >org.apache.maven.plugins</groupId >
83
+ <artifactId >maven-compiler-plugin</artifactId >
84
+ <executions >
85
+ <!-- Replacing default-compile as it is treated specially by Maven -->
86
+ <execution >
87
+ <id >default-compile</id >
88
+ <phase >none</phase >
89
+ </execution >
90
+ <!-- Replacing default-testCompile as it is treated specially by Maven -->
91
+ <execution >
92
+ <id >default-testCompile</id >
93
+ <phase >none</phase >
94
+ </execution >
95
+ <execution >
96
+ <id >java-compile</id >
97
+ <phase >compile</phase >
98
+ <goals >
99
+ <goal >compile</goal >
100
+ </goals >
101
+ </execution >
102
+ <execution >
103
+ <id >java-test-compile</id >
104
+ <phase >test-compile</phase >
105
+ <goals >
106
+ <goal >testCompile</goal >
107
+ </goals >
108
+ </execution >
109
+ </executions >
110
+ </plugin >
81
111
</plugins >
82
112
</build >
83
113
</project >
File renamed without changes.
You can’t perform that action at this time.
0 commit comments