|
6 | 6 |
|
7 | 7 | <groupId>net.coru</groupId> |
8 | 8 | <artifactId>scc-multiapi-converter</artifactId> |
9 | | - <version>2.6.2</version> |
| 9 | + <version>2.7.0</version> |
10 | 10 | <name>SCC-MultiApi-Converter</name> |
11 | 11 | <description>Generates Spring Cloud Contracts based on an OpenApi and AsyncApi document</description> |
12 | 12 | <url>https://github.com/corunet/scc-multiapi-converter</url> |
|
35 | 35 | <developer> |
36 | 36 | <id>jegarcia</id> |
37 | 37 | <name>Jose Enrique Garcia Maciñeiras</name> |
38 | | - <email>jegarcia@corunet.com</email> |
| 38 | + <email>joseenrique.garcia@sngular.com</email> |
39 | 39 | <organization>Corunet</organization> |
40 | 40 | <organizationUrl>https://corunet.github.io/</organizationUrl> |
41 | 41 | <roles> |
|
47 | 47 | <developer> |
48 | 48 | <id>cmunozgomez</id> |
49 | 49 | <name>Cesar Munoz Gomez</name> |
50 | | - <email>cmunoz@corunet.com</email> |
| 50 | + <email>cesar.munoz@sngular.com</email> |
51 | 51 | <organization>Corunet</organization> |
52 | 52 | <organizationUrl>https://corunet.github.io/</organizationUrl> |
53 | 53 | <roles> |
|
58 | 58 | <developer> |
59 | 59 | <id>Rivarsal</id> |
60 | 60 | <name>Pablo José López Rivadulla</name> |
61 | | - <email>plopez@corunet.com</email> |
| 61 | + <email>pablo.lopezr@sngular.com</email> |
62 | 62 | <organization>Corunet</organization> |
63 | 63 | <organizationUrl>https://corunet.github.io/</organizationUrl> |
64 | 64 | <roles> |
|
69 | 69 | <developer> |
70 | 70 | <id>fcampostato</id> |
71 | 71 | <name>Fernando Campos Tato</name> |
72 | | - <email>fcampos@corunet.com</email> |
| 72 | + <email>fernando.campos@sngular.com</email> |
73 | 73 | <organization>Corunet</organization> |
74 | 74 | <organizationUrl>https://corunet.github.io/</organizationUrl> |
75 | 75 | <roles> |
|
80 | 80 | <developer> |
81 | 81 | <id>jmejutovazquez</id> |
82 | 82 | <name>Javier Mejuto Vázquez</name> |
83 | | - <email>jmejuto@corunet.com</email> |
| 83 | + <email>javier.mejuto@sngular.com</email> |
84 | 84 | <organization>Corunet</organization> |
85 | 85 | <organizationUrl>https://corunet.github.io/</organizationUrl> |
86 | 86 | <roles> |
|
91 | 91 | <developer> |
92 | 92 | <id>mcabezasp</id> |
93 | 93 | <name>Miguel Cabezas Puerto</name> |
94 | | - <email>mcabezas@corunet.com</email> |
| 94 | + <email>miguel.cabezas@sngular.com</email> |
95 | 95 | <organization>Corunet</organization> |
96 | 96 | <organizationUrl>https://corunet.github.io/</organizationUrl> |
97 | 97 | <roles> |
|
192 | 192 | </dependency> |
193 | 193 | </dependencies> |
194 | 194 | <build> |
| 195 | + <pluginManagement> |
| 196 | + <plugins> |
| 197 | + <plugin> |
| 198 | + <groupId>org.apache.maven.plugins</groupId> |
| 199 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 200 | + <version>3.1.2</version> |
| 201 | + <dependencies> |
| 202 | + <dependency> |
| 203 | + <groupId>com.puppycrawl.tools</groupId> |
| 204 | + <artifactId>checkstyle</artifactId> |
| 205 | + <version>10.2</version> |
| 206 | + </dependency> |
| 207 | + </dependencies> |
| 208 | + </plugin> |
| 209 | + </plugins> |
| 210 | + </pluginManagement> |
195 | 211 | <plugins> |
| 212 | + <plugin> |
| 213 | + <groupId>org.apache.maven.plugins</groupId> |
| 214 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 215 | + <configuration> |
| 216 | + <configLocation>styles/checkstyle/OSS_checkstyle.xml</configLocation> |
| 217 | + <encoding>UTF-8</encoding> |
| 218 | + <consoleOutput>true</consoleOutput> |
| 219 | + <failsOnError>true</failsOnError> |
| 220 | + <linkXRef>false</linkXRef> |
| 221 | + </configuration> |
| 222 | + <executions> |
| 223 | + <execution> |
| 224 | + <id>validate</id> |
| 225 | + <goals> |
| 226 | + <goal>check</goal> |
| 227 | + </goals> |
| 228 | + <phase>validate</phase> |
| 229 | + </execution> |
| 230 | + </executions> |
| 231 | + </plugin> |
196 | 232 | <plugin> |
197 | 233 | <groupId>org.apache.maven.plugins</groupId> |
198 | 234 | <artifactId>maven-plugin-plugin</artifactId> |
|
287 | 323 | </plugin> |
288 | 324 | </plugins> |
289 | 325 | </build> |
| 326 | + |
| 327 | + <reporting> |
| 328 | + <plugins> |
| 329 | + <plugin> |
| 330 | + <groupId>org.apache.maven.plugins</groupId> |
| 331 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 332 | + <configuration> |
| 333 | + <configLocation>styles/checkstyle/OSS_checkstyle.xml</configLocation> |
| 334 | + </configuration> |
| 335 | + </plugin> |
| 336 | + </plugins> |
| 337 | + </reporting> |
290 | 338 | </project> |
0 commit comments