|
35 | 35 | <tag>HEAD</tag> |
36 | 36 | </scm> |
37 | 37 | <properties> |
38 | | - <compiler-plugin.version>3.8.1</compiler-plugin.version> |
39 | | - <maven.compiler.parameters>true</maven.compiler.parameters> |
40 | | - <maven.compiler.source>11</maven.compiler.source> |
41 | | - <maven.compiler.target>11</maven.compiler.target> |
42 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
43 | | - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
44 | 38 | <surefire-plugin.version>3.0.0-M5</surefire-plugin.version> |
45 | | - <quarkus.package.type>uber-jar</quarkus.package.type> |
46 | 39 | </properties> |
47 | 40 | <dependencyManagement> |
48 | 41 | <dependencies> |
|
149 | 142 | </plugin> |
150 | 143 | <plugin> |
151 | 144 | <artifactId>maven-compiler-plugin</artifactId> |
152 | | - <version>${compiler-plugin.version}</version> |
153 | | - <configuration> |
154 | | - <testSource>${maven.compiler.source}</testSource> |
155 | | - <testTarget>${maven.compiler.target}</testTarget> |
156 | | - <source>${maven.compiler.source}</source> |
157 | | - <target>${maven.compiler.target}</target> |
158 | | - </configuration> |
159 | | - </plugin> |
160 | | - <plugin> |
161 | | - <artifactId>maven-surefire-plugin</artifactId> |
162 | | - <version>${surefire-plugin.version}</version> |
163 | | - <configuration> |
164 | | - <systemPropertyVariables> |
165 | | - <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
166 | | - <maven.home>${maven.home}</maven.home> |
167 | | - </systemPropertyVariables> |
168 | | - </configuration> |
| 145 | + <version>${version.plugin.compiler}</version> |
169 | 146 | </plugin> |
170 | 147 | <plugin> |
171 | 148 | <groupId>ru.concerteza.buildnumber</groupId> |
|
203 | 180 | </plugin> |
204 | 181 | </plugins> |
205 | 182 | </build> |
206 | | - <profiles> |
207 | | - <profile> |
208 | | - <id>native</id> |
209 | | - <activation> |
210 | | - <property> |
211 | | - <name>native</name> |
212 | | - </property> |
213 | | - </activation> |
214 | | - <build> |
215 | | - <plugins> |
216 | | - <plugin> |
217 | | - <artifactId>maven-failsafe-plugin</artifactId> |
218 | | - <version>${surefire-plugin.version}</version> |
219 | | - <executions> |
220 | | - <execution> |
221 | | - <goals> |
222 | | - <goal>integration-test</goal> |
223 | | - <goal>verify</goal> |
224 | | - </goals> |
225 | | - <configuration> |
226 | | - <systemPropertyVariables> |
227 | | - <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path> |
228 | | - <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
229 | | - <maven.home>${maven.home}</maven.home> |
230 | | - </systemPropertyVariables> |
231 | | - </configuration> |
232 | | - </execution> |
233 | | - </executions> |
234 | | - </plugin> |
235 | | - </plugins> |
236 | | - </build> |
237 | | - <properties> |
238 | | - <quarkus.package.type>native</quarkus.package.type> |
239 | | - </properties> |
240 | | - </profile> |
241 | | - </profiles> |
242 | 183 | </project> |
0 commit comments