Skip to content

Commit

Permalink
Create placeholder sources and javadoc jar for tachyon-client to comp…
Browse files Browse the repository at this point in the history
…ly with Sonatype requirements.
  • Loading branch information
calvinjia committed Jul 18, 2015
1 parent 3d029f6 commit f26567a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions clients/client/javadoc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Javadoc placeholder to comply with Sonatype requirements.
18 changes: 18 additions & 0 deletions clients/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,24 @@

<build>
<plugins>
<!-- This plugin generates an empty javadoc jar to comply with Sonatype requirements -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>empty-javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<classesDirectory>${basedir}/javadoc</classesDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
Expand Down
1 change: 1 addition & 0 deletions clients/client/src/main/java/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Javadoc placeholder to comply with Sonatype requirements.

0 comments on commit f26567a

Please sign in to comment.