added some release profile comments
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2336 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
88bfdf504c
commit
9bb1626db2
|
@ -608,6 +608,15 @@
|
||||||
<id>eclipse-release</id>
|
<id>eclipse-release</id>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<!--
|
||||||
|
leverages new includeDependencySources which pulls all the sources
|
||||||
|
and generates the javadoc off of them yielding a javadoc setup
|
||||||
|
for the entire distribution
|
||||||
|
|
||||||
|
this step can take over 10 minutes as it spawns additional javadoc
|
||||||
|
plugin calls which is why it has been moved to strictly release
|
||||||
|
process execution (requires 2.7+ version)
|
||||||
|
-->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
@ -632,8 +641,10 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- export the jetty directory which is then bundled via the jetty-src.xml
|
<!--
|
||||||
assembly descriptor -->
|
svn export the jetty directory which is then bundled via the jetty-src.xml
|
||||||
|
assembly descriptor to create a source distribution archive
|
||||||
|
-->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-scm-plugin</artifactId>
|
<artifactId>maven-scm-plugin</artifactId>
|
||||||
|
@ -651,6 +662,9 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<!--
|
||||||
|
Adds in the additional jetty-src assembly descriptor to the release process
|
||||||
|
-->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue