Skip to content

Commit

Permalink
Disabling javadoc validation
Browse files Browse the repository at this point in the history
  • Loading branch information
aldrinleal committed Aug 1, 2014
1 parent ac2a343 commit a016194
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
Expand All @@ -12,7 +14,7 @@
<version>0.0.7-SNAPSHOT</version>

<prerequisites>
<maven>3.1.1</maven>
<maven>3.1.1</maven>
</prerequisites>

<description>jbake-maven-plugin is a plugin to integrate JBake into your projects</description>
Expand Down Expand Up @@ -60,7 +62,8 @@

<scm>
<connection>scm:git:http://github.com/ingenieux/jbake-maven-plugin</connection>
<developerConnection>scm:git:ssh://[email protected]/ingenieux/jbake-maven-plugin.git</developerConnection>
<developerConnection>scm:git:ssh://[email protected]/ingenieux/jbake-maven-plugin.git
</developerConnection>
<url>http://github.com/ingenieux/jbake-maven-plugin</url>
</scm>

Expand Down Expand Up @@ -250,8 +253,19 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
Expand Down

0 comments on commit a016194

Please sign in to comment.