Skip to content

Commit

Permalink
Add transitive dependency to fix javadoc plugin failure when releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
Farasath Ahamed committed Oct 17, 2017
1 parent c922390 commit ae80058
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
9 changes: 9 additions & 0 deletions components/org.wso2.carbon.identity.oauth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@
<url>http://wso2.org</url>

<dependencies>
<!--
This dependency is added as a quick fix
for https://github.com/wso2-extensions/identity-inbound-auth-oauth/issues/543. Remove this tomcat
dependency only after fixing the issue. Otherwise will result in build failures when javadoc plugin runs.
-->
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-coyote</artifactId>
</dependency>
<dependency>
<groupId>commons-lang.wso2</groupId>
<artifactId>commons-lang</artifactId>
Expand Down
16 changes: 10 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,15 @@
<scope>test</scope>
</dependency>

<!--
See https://github.com/wso2-extensions/identity-inbound-auth-oauth/issues/543 for the requirement to
have this dependency
-->
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-coyote</artifactId>
<version>${tomcat.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -701,6 +710,7 @@
<joda.wso2.version>2.8.2.wso2v1</joda.wso2.version>
<joda.wso2.osgi.version.range>[2.8.2,3.0.0)</joda.wso2.osgi.version.range>

<tomcat.version>7.0.69</tomcat.version>
<tomcat-util.version>3.3.2</tomcat-util.version>
<tomcat.wso2.imp.pkg.version.range>[1.7.0,2.0)</tomcat.wso2.imp.pkg.version.range>

Expand Down Expand Up @@ -734,12 +744,6 @@
<maven.surefire.plugin.version>2.18.1</maven.surefire.plugin.version>
<javaee.web.api.version>7.0</javaee.web.api.version>
<h2database.version>1.0.60</h2database.version>

<!--
Please do not remove this property until all javadoc comments are fixed. Removing this will cause build
failures during component release.
-->
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>

</project>
Expand Down

0 comments on commit ae80058

Please sign in to comment.