Skip to content

Commit

Permalink
Merge "Add Maven profile to skip build of plugin modules"
Browse files Browse the repository at this point in the history
  • Loading branch information
spearce authored and gerrit code review committed Jun 27, 2012
2 parents 73c8dda + 8173d42 commit 4f57484
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions pom.xml
Expand Up @@ -88,12 +88,26 @@ limitations under the License.
<module>gerrit-war</module>

<module>gerrit-extension-api</module>
<module>gerrit-plugin-api</module>
<module>gerrit-plugin-archetype</module>

<module>gerrit-gwtui</module>
</modules>

<profiles>
<profile>
<id>all</id>
<modules>
<module>gerrit-plugin-api</module>
<module>gerrit-plugin-archetype</module>
</modules>
</profile>
<profile>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<id>no-plugins</id>
</profile>
</profiles>

<licenses>
<license>
<name>Apache License, 2.0</name>
Expand Down
2 changes: 1 addition & 1 deletion tools/release.sh
Expand Up @@ -25,7 +25,7 @@ then
fi

./tools/version.sh --release &&
mvn clean package $include_docs
mvn clean package $include_docs -P all
rc=$?
./tools/version.sh --reset

Expand Down

0 comments on commit 4f57484

Please sign in to comment.