|
45 | 45 | <quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id> |
46 | 46 | <quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id> |
47 | 47 | <skipITs>true</skipITs> |
| 48 | + <format.skip>false</format.skip> |
48 | 49 |
|
49 | 50 | <quarkus.platform.version>3.17.4</quarkus.platform.version> |
50 | 51 | <assertj.version>3.26.3</assertj.version> |
|
68 | 69 | </properties> |
69 | 70 |
|
70 | 71 | <modules> |
71 | | - <module>build-tools</module> |
72 | 72 | <module>metadata</module> |
73 | 73 | <module>measure</module> |
74 | 74 | <module>server</module> |
|
121 | 121 | <artifactId>formatter-maven-plugin</artifactId> |
122 | 122 | <version>${formatter-plugin.version}</version> |
123 | 123 | <configuration> |
124 | | - <configFile>eclipse-format.xml</configFile> |
| 124 | + <configFile>contributing/eclipse-format.xml</configFile> |
125 | 125 | <lineEnding>LF</lineEnding> |
126 | 126 | <skip>${format.skip}</skip> |
127 | 127 | </configuration> |
|
137 | 137 | <skip>${format.skip}</skip> |
138 | 138 | </configuration> |
139 | 139 | </plugin> |
| 140 | + <plugin> |
| 141 | + <groupId>org.apache.maven.plugins</groupId> |
| 142 | + <artifactId>maven-deploy-plugin</artifactId> |
| 143 | + <version>${maven-deploy-plugin.version}</version> |
| 144 | + </plugin> |
| 145 | + <plugin> |
| 146 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 147 | + <artifactId>quarkus-maven-plugin</artifactId> |
| 148 | + <version>${quarkus.platform.version}</version> |
| 149 | + <extensions>true</extensions> |
| 150 | + <executions> |
| 151 | + <execution> |
| 152 | + <goals> |
| 153 | + <goal>build</goal> |
| 154 | + <goal>generate-code</goal> |
| 155 | + <goal>generate-code-tests</goal> |
| 156 | + </goals> |
| 157 | + </execution> |
| 158 | + </executions> |
| 159 | + </plugin> |
| 160 | + <plugin> |
| 161 | + <groupId>org.apache.maven.plugins</groupId> |
| 162 | + <artifactId>maven-compiler-plugin</artifactId> |
| 163 | + <version>${compiler-plugin.version}</version> |
| 164 | + <configuration> |
| 165 | + <compilerArgs> |
| 166 | + <arg>-parameters</arg> |
| 167 | + </compilerArgs> |
| 168 | + </configuration> |
| 169 | + </plugin> |
| 170 | + <plugin> |
| 171 | + <groupId>org.apache.maven.plugins</groupId> |
| 172 | + <artifactId>maven-surefire-plugin</artifactId> |
| 173 | + <version>${maven-surefire-plugin.version}</version> |
| 174 | + <dependencies> |
| 175 | + <dependency> |
| 176 | + <groupId>me.fabriciorby</groupId> |
| 177 | + <artifactId>maven-surefire-junit5-tree-reporter</artifactId> |
| 178 | + <version>1.4.0</version> |
| 179 | + </dependency> |
| 180 | + </dependencies> |
| 181 | + <configuration> |
| 182 | + <reportFormat>plain</reportFormat> |
| 183 | + <consoleOutputReporter> |
| 184 | + <disable>true</disable> |
| 185 | + </consoleOutputReporter> |
| 186 | + <statelessTestsetInfoReporter |
| 187 | + implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter"> |
| 188 | + <theme>UNICODE</theme> |
| 189 | + </statelessTestsetInfoReporter> |
| 190 | + <systemPropertyVariables> |
| 191 | + <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
| 192 | + <maven.home>${maven.home}</maven.home> |
| 193 | + </systemPropertyVariables> |
| 194 | + </configuration> |
| 195 | + </plugin> |
| 196 | + <plugin> |
| 197 | + <groupId>org.apache.maven.plugins</groupId> |
| 198 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 199 | + <version>${maven-failsafe-plugin.version}</version> |
| 200 | + <executions> |
| 201 | + <execution> |
| 202 | + <goals> |
| 203 | + <goal>integration-test</goal> |
| 204 | + <goal>verify</goal> |
| 205 | + </goals> |
| 206 | + <configuration> |
| 207 | + <systemPropertyVariables> |
| 208 | + <native.image.path>${project.build.directory}/${project.build.finalName}-runner |
| 209 | + </native.image.path> |
| 210 | + <java.util.logging.manager>org.jboss.logmanager.LogManager |
| 211 | + </java.util.logging.manager> |
| 212 | + <maven.home>${maven.home}</maven.home> |
| 213 | + </systemPropertyVariables> |
| 214 | + </configuration> |
| 215 | + </execution> |
| 216 | + </executions> |
| 217 | + </plugin> |
140 | 218 | </plugins> |
141 | 219 | </pluginManagement> |
142 | 220 | <plugins> |
143 | 221 | <plugin> |
144 | 222 | <groupId>org.apache.maven.plugins</groupId> |
145 | 223 | <artifactId>maven-deploy-plugin</artifactId> |
146 | | - <version>${maven-deploy-plugin.version}</version> |
147 | 224 | </plugin> |
148 | 225 | <plugin> |
149 | 226 | <groupId>${quarkus.platform.group-id}</groupId> |
150 | 227 | <artifactId>quarkus-maven-plugin</artifactId> |
151 | | - <version>${quarkus.platform.version}</version> |
152 | | - <extensions>true</extensions> |
153 | | - <executions> |
154 | | - <execution> |
155 | | - <goals> |
156 | | - <goal>build</goal> |
157 | | - <goal>generate-code</goal> |
158 | | - <goal>generate-code-tests</goal> |
159 | | - </goals> |
160 | | - </execution> |
161 | | - </executions> |
162 | 228 | </plugin> |
163 | 229 | <plugin> |
164 | 230 | <groupId>org.apache.maven.plugins</groupId> |
165 | 231 | <artifactId>maven-compiler-plugin</artifactId> |
166 | | - <version>${compiler-plugin.version}</version> |
167 | | - <configuration> |
168 | | - <compilerArgs> |
169 | | - <arg>-parameters</arg> |
170 | | - </compilerArgs> |
171 | | - </configuration> |
172 | 232 | </plugin> |
173 | 233 | <plugin> |
174 | 234 | <groupId>org.apache.maven.plugins</groupId> |
175 | 235 | <artifactId>maven-surefire-plugin</artifactId> |
176 | | - <version>${maven-surefire-plugin.version}</version> |
177 | | - <dependencies> |
178 | | - <dependency> |
179 | | - <groupId>me.fabriciorby</groupId> |
180 | | - <artifactId>maven-surefire-junit5-tree-reporter</artifactId> |
181 | | - <version>1.4.0</version> |
182 | | - </dependency> |
183 | | - </dependencies> |
184 | | - <configuration> |
185 | | - <reportFormat>plain</reportFormat> |
186 | | - <consoleOutputReporter> |
187 | | - <disable>true</disable> |
188 | | - </consoleOutputReporter> |
189 | | - <statelessTestsetInfoReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter"> |
190 | | - <theme>UNICODE</theme> |
191 | | - </statelessTestsetInfoReporter> |
192 | | - <systemPropertyVariables> |
193 | | - <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
194 | | - <maven.home>${maven.home}</maven.home> |
195 | | - </systemPropertyVariables> |
196 | | - </configuration> |
197 | 236 | </plugin> |
198 | 237 | <plugin> |
199 | 238 | <groupId>org.apache.maven.plugins</groupId> |
200 | 239 | <artifactId>maven-failsafe-plugin</artifactId> |
201 | | - <version>${maven-failsafe-plugin.version}</version> |
202 | | - <executions> |
203 | | - <execution> |
204 | | - <goals> |
205 | | - <goal>integration-test</goal> |
206 | | - <goal>verify</goal> |
207 | | - </goals> |
208 | | - <configuration> |
209 | | - <systemPropertyVariables> |
210 | | - <native.image.path>${project.build.directory}/${project.build.finalName}-runner |
211 | | - </native.image.path> |
212 | | - <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
213 | | - <maven.home>${maven.home}</maven.home> |
214 | | - </systemPropertyVariables> |
215 | | - </configuration> |
216 | | - </execution> |
217 | | - </executions> |
218 | 240 | </plugin> |
219 | 241 | <plugin> |
220 | 242 | <groupId>net.revelc.code.formatter</groupId> |
|
0 commit comments