Skip to content

Commit

Permalink
Merge "Only create source archives for packages that need one"
Browse files Browse the repository at this point in the history
spearce authored and Android Code Review committed Jun 6, 2011
2 parents 3cd9de9 + a52f8cd commit 824d1e6
Showing 5 changed files with 65 additions and 13 deletions.
11 changes: 11 additions & 0 deletions gerrit-common/pom.xml
Original file line number Diff line number Diff line change
@@ -90,6 +90,17 @@ limitations under the License.
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
16 changes: 16 additions & 0 deletions gerrit-patch-jgit/pom.xml
Original file line number Diff line number Diff line change
@@ -49,4 +49,20 @@ limitations under the License.
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
16 changes: 16 additions & 0 deletions gerrit-prettify/pom.xml
Original file line number Diff line number Diff line change
@@ -56,4 +56,20 @@ limitations under the License.
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
16 changes: 16 additions & 0 deletions gerrit-reviewdb/pom.xml
Original file line number Diff line number Diff line change
@@ -38,4 +38,20 @@ limitations under the License.
<artifactId>gwtorm</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 6 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -322,6 +322,12 @@ limitations under the License.
<version>2.3.2</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
@@ -376,19 +382,6 @@ limitations under the License.
<encoding>UTF-8</encoding>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

0 comments on commit 824d1e6

Please sign in to comment.