|
198 | 198 | </dependency> |
199 | 199 |
|
200 | 200 | <!-- Used for IRC hooks --> |
201 | | - <!--<dependency> NOT READY YET |
202 | | - <groupId>org.jibble</groupId> |
203 | | - <artifactId>pircbot</artifactId> |
204 | | - <version>1.5.0</version> |
205 | | - <scope>compile</scope> |
206 | | - </dependency>--> |
| 201 | + <!-- NOT READY YET |
| 202 | + <dependency> |
| 203 | + <groupId>org.jibble</groupId> |
| 204 | + <artifactId>pircbot</artifactId> |
| 205 | + <version>1.5.0</version> |
| 206 | + <scope>compile</scope> |
| 207 | + </dependency> |
| 208 | + --> |
207 | 209 |
|
208 | 210 | <!-- Profiling library --> |
209 | 211 | <dependency> |
|
278 | 280 |
|
279 | 281 | <!-- Evil-y things (currently not used) --> |
280 | 282 | <!--<dependency> |
281 | | - <groupId>cglib</groupId> |
282 | | - <artifactId>cglib</artifactId> |
283 | | - <version>2.2.2</version> |
284 | | - <scope>compile</scope> |
285 | | - <type>jar</type> |
| 283 | + <groupId>cglib</groupId> |
| 284 | + <artifactId>cglib</artifactId> |
| 285 | + <version>2.2.2</version> |
| 286 | + <scope>compile</scope> |
| 287 | + <type>jar</type> |
286 | 288 | </dependency> |
287 | 289 | <dependency> |
288 | | - <groupId>org.javassist</groupId> |
289 | | - <artifactId>javassist</artifactId> |
290 | | - <version>3.15.0-GA</version> |
291 | | - <type>jar</type> |
| 290 | + <groupId>org.javassist</groupId> |
| 291 | + <artifactId>javassist</artifactId> |
| 292 | + <version>3.15.0-GA</version> |
| 293 | + <type>jar</type> |
292 | 294 | </dependency>--> |
293 | 295 | <!-- Embedded SSH Client --> |
294 | 296 | <dependency> |
|
305 | 307 | <artifactId>jchardet</artifactId> |
306 | 308 | <version>1.0</version> |
307 | 309 | </dependency> |
308 | | - <!-- https://mvnrepository.com/artifact/org.apache.oltu.oauth2/org.apache.oltu.oauth2.client --> |
309 | | - <dependency> |
310 | | - <!-- Apache License 2.0 --> |
311 | | - <groupId>org.apache.oltu.oauth2</groupId> |
312 | | - <artifactId>org.apache.oltu.oauth2.client</artifactId> |
313 | | - <version>1.0.2</version> |
314 | | - </dependency> |
| 310 | + <!-- https://mvnrepository.com/artifact/org.apache.oltu.oauth2/org.apache.oltu.oauth2.client --> |
| 311 | + <dependency> |
| 312 | + <!-- Apache License 2.0 --> |
| 313 | + <groupId>org.apache.oltu.oauth2</groupId> |
| 314 | + <artifactId>org.apache.oltu.oauth2.client</artifactId> |
| 315 | + <version>1.0.2</version> |
| 316 | + </dependency> |
315 | 317 | <!-- Test libraries --> |
316 | 318 | <!-- Hamcrest must come before powermock --> |
317 | 319 | <dependency> |
|
488 | 490 | </manifestEntries> |
489 | 491 | </archive> |
490 | 492 | </configuration> |
491 | | - </plugin> |
| 493 | + </plugin> |
492 | 494 |
|
493 | 495 | <!-- Shade plugin --> |
494 | 496 | <plugin> |
|
503 | 505 | <goal>shade</goal> |
504 | 506 | </goals> |
505 | 507 | <configuration> |
506 | | - <shadedArtifactAttached>true</shadedArtifactAttached> |
507 | | - <shadedClassifierName>full</shadedClassifierName> |
508 | | - <minimizeJar>false</minimizeJar> |
509 | | - <!-- To add a new shaded dependency, there are three steps. |
510 | | - 1. Add a reference to the artifact set |
511 | | - 2. Add a relocation tag (usually recommended, though not always) |
512 | | - 3. Add it to the filter list |
| 508 | + <shadedArtifactAttached>true</shadedArtifactAttached> |
| 509 | + <shadedClassifierName>full</shadedClassifierName> |
| 510 | + <minimizeJar>false</minimizeJar> |
| 511 | + <!-- To add a new shaded dependency, there are three steps. |
| 512 | + 1. Add a reference to the artifact set |
| 513 | + 2. Add a relocation tag (usually recommended, though not always) |
| 514 | + 3. Add it to the filter list |
513 | 515 |
|
514 | 516 | You can copy existing structures over, and change the parameters on them. |
515 | 517 | --> |
|
912 | 914 | </execution> |
913 | 915 | </executions> |
914 | 916 | </plugin> |
| 917 | + |
| 918 | + <!-- Checkstyle plugin --> |
| 919 | + <plugin> |
| 920 | + <groupId>org.apache.maven.plugins</groupId> |
| 921 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 922 | + <version>3.0.0</version> |
| 923 | + <executions> |
| 924 | + <execution> |
| 925 | + <id>validate</id> |
| 926 | + <phase>validate</phase> |
| 927 | + <configuration> |
| 928 | + <sourceDirectories>${project.compileSourceRoots}</sourceDirectories> |
| 929 | + <testSourceDirectories>${project.testCompileSourceRoots}</testSourceDirectories> |
| 930 | + <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 931 | + <configLocation>${basedir}/checkstyle.xml</configLocation> |
| 932 | + <encoding>UTF-8</encoding> |
| 933 | + <consoleOutput>true</consoleOutput> |
| 934 | + <failsOnError>true</failsOnError> |
| 935 | + <linkXRef>false</linkXRef> |
| 936 | + </configuration> |
| 937 | + <goals> |
| 938 | + <goal>check</goal> |
| 939 | + </goals> |
| 940 | + </execution> |
| 941 | + </executions> |
| 942 | + </plugin> |
| 943 | + |
915 | 944 | </plugins> |
916 | 945 | </build> |
917 | 946 | <profiles> |
|
0 commit comments