javadoc exclusions

This commit is contained in:
Gabriele C 2015-12-30 22:20:02 +01:00
parent 9343cfe9da
commit 3bc64917fa

151
pom.xml
View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>fr.xephi</groupId> <groupId>fr.xephi</groupId>
<artifactId>authme</artifactId> <artifactId>authme</artifactId>
<version>5.2-SNAPSHOT</version> <version>5.2-SNAPSHOT</version>
@ -124,38 +124,38 @@
</testResource> </testResource>
</testResources> </testResources>
<!-- Just to keep Eclipse compatibility... --> <!-- Just to keep Eclipse compatibility... -->
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.eclipse.m2e</groupId> <groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId> <artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<configuration> <configuration>
<lifecycleMappingMetadata> <lifecycleMappingMetadata>
<pluginExecutions> <pluginExecutions>
<pluginExecution> <pluginExecution>
<pluginExecutionFilter> <pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId> <artifactId>buildnumber-maven-plugin</artifactId>
<versionRange>[1.0,)</versionRange> <versionRange>[1.0,)</versionRange>
<goals> <goals>
<goal>create-timestamp</goal> <goal>create-timestamp</goal>
</goals> </goals>
</pluginExecutionFilter> </pluginExecutionFilter>
<action> <action>
<execute> <execute>
<runOnConfiguration>true</runOnConfiguration> <runOnConfiguration>true</runOnConfiguration>
<runOnIncremental>true</runOnIncremental> <runOnIncremental>true</runOnIncremental>
</execute> </execute>
</action> </action>
</pluginExecution> </pluginExecution>
</pluginExecutions> </pluginExecutions>
</lifecycleMappingMetadata> </lifecycleMappingMetadata>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
@ -167,23 +167,24 @@
<target>${javaVersion}</target> <target>${javaVersion}</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId> <plugin>
<artifactId>buildnumber-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId>
<version>1.4</version> <artifactId>buildnumber-maven-plugin</artifactId>
<configuration> <version>1.4</version>
<timestampFormat>dd-MM-yy_HH-mm</timestampFormat> <configuration>
<timestampPropertyName>build.time</timestampPropertyName> <timestampFormat>dd-MM-yy_HH-mm</timestampFormat>
</configuration> <timestampPropertyName>build.time</timestampPropertyName>
<executions> </configuration>
<execution> <executions>
<phase>generate-resources</phase> <execution>
<goals> <phase>generate-resources</phase>
<goal>create-timestamp</goal> <goals>
</goals> <goal>create-timestamp</goal>
</execution> </goals>
</executions> </execution>
</plugin> </executions>
</plugin>
<!-- TODO: we need also to relocate the other libs --> <!-- TODO: we need also to relocate the other libs -->
<plugin> <plugin>
@ -229,12 +230,7 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.1.0</version>
<!-- Token is provided by mvn command -->
</plugin>
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId> <artifactId>jacoco-maven-plugin</artifactId>
@ -248,6 +244,23 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.1.0</version>
<!-- Token is provided by mvn command -->
</plugin>
<!-- Javadocs settings -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<includePackageNames>fr.xephi.authme.api:*</excludePackageNames>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
@ -494,24 +507,24 @@
<artifactId>bukkit</artifactId> <artifactId>bukkit</artifactId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<groupId>com.sk89q</groupId> <groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId> <artifactId>worldguard</artifactId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<groupId>com.sk89q</groupId> <groupId>com.sk89q</groupId>
<artifactId>worldedit</artifactId> <artifactId>worldedit</artifactId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<artifactId>VaultAPI</artifactId> <artifactId>VaultAPI</artifactId>
<groupId>net.milkbowl.vault</groupId> <groupId>net.milkbowl.vault</groupId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<artifactId>uuidprovider</artifactId> <artifactId>uuidprovider</artifactId>
<groupId>net.kaikk.mc</groupId> <groupId>net.kaikk.mc</groupId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<artifactId>ToHPluginUtils</artifactId> <artifactId>ToHPluginUtils</artifactId>
<groupId>org.tyrannyofheaven.bukkit</groupId> <groupId>org.tyrannyofheaven.bukkit</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
@ -746,10 +759,10 @@
<version>2.0.5-beta</version> <version>2.0.5-beta</version>
<optional>true</optional> <optional>true</optional>
<exclusions> <exclusions>
<exclusion> <exclusion>
<artifactId>hamcrest-core</artifactId> <artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId> <groupId>org.hamcrest</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>