Skip to content

Commit

Permalink
Add missing bits to fake out Sonatype OSS to deploy this jar.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Jan 19, 2015
1 parent 8d12cc8 commit 9888f42
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions ext/truffle/pom.xml
Expand Up @@ -19,6 +19,11 @@
<properties>
<tesla.dump.pom>pom.xml</tesla.dump.pom>
</properties>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
Expand All @@ -40,6 +45,44 @@
</execution>
</executions>
</plugin>
<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>
<includes>
<include>${basedir}/src/main/resource/empty</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>empty-sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<includes>
<include>${basedir}/src/main/resource/empty</include>
</includes>
<classifier>sources</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
Expand Down

0 comments on commit 9888f42

Please sign in to comment.