dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #40871
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 20816: turn off javadoc linting (default true in java 8)
------------------------------------------------------------
revno: 20816
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2015-10-21 08:48:45 +0700
message:
turn off javadoc linting (default true in java 8)
modified:
dhis-2/pom.xml
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/pom.xml'
--- dhis-2/pom.xml 2015-10-20 22:50:17 +0000
+++ dhis-2/pom.xml 2015-10-21 01:48:45 +0000
@@ -80,7 +80,7 @@
<system>Launchpad</system>
<url>https://launchpad.net/dhis2</url>
</issueManagement>
-
+
<scm>
<url>lp:dhis2</url>
</scm>
@@ -197,11 +197,14 @@
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
-
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
+ <configuration>
+ <additionalparam>-Xdoclint:none</additionalparam>
+ </configuration>
<executions>
<execution>
<id>attach-javadocs</id>
@@ -211,7 +214,7 @@
</execution>
</executions>
</plugin>
-
+
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
@@ -625,7 +628,8 @@
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version><!-- 2.4 -->
+ <version>3.1.0</version>
+ <!-- 2.4 -->
<scope>provided</scope>
</dependency>
<dependency>
@@ -1035,7 +1039,8 @@
<hibernate.version>4.2.20.Final</hibernate.version>
<hibernate-validator.version>4.3.2.Final</hibernate-validator.version>
<jclouds.version>1.9.1</jclouds.version>
- <javassist.version>3.18.1-GA</javassist.version> <!-- Keep in sync with Hibernate -->
+ <javassist.version>3.18.1-GA</javassist.version>
+ <!-- Keep in sync with Hibernate -->
<jackson.version>2.6.1</jackson.version>
<slf4j.version>1.6.6</slf4j.version>
<geotools.version>9.3</geotools.version>