Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: faa5b4ad8aa76a1a8ff9a06a9e8add508ff6f5f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Build Toolchain for the Eclipse Jetty Project build
===================================================

The modules contained in this toolchain project change very infrequently
and at different rates.  Instead of re-releasing unchanged modules over
and over to release a module in this project do the following:

    cd jetty-test-helper    (cd into the project you want to release)
    mvn -Peclipse-release -Dusername=<user> release:prepare
    mvn release:perform

Then go to https://oss.sonatype.org to close and release the project.

Should there be changes to the deployment locations or metadata you
want to change deploy a new parent from the jetty.toolchain project
and update the module you want to release pom.xml parent declaration.
You don't need to update all of them and release when that happens,
it will sort itself out when they need released.

Note, the tlp provided in this directory is purely to build everything
if that is what you want to do, you can't release from the top level
as that would mess up the per artifact tags and besides, the version
on the tlp is amusingly direct that you don't want to do that.

questions, ask jmcconnell in the #jetty channel on irc.freenode.net
https://webchat.freenode.net/

Back to the top