Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
The Eclipse-based LDAP browser and directory client.
Apache Directory Studio is a complete directory tooling platform intended to be used with any LDAP server however it is particularly designed for use with ApacheDS. It is an Eclipse RCP application, composed of several Eclipse (OSGi) plugins, that can be easily upgraded with additional ones. These plugins can even run within Eclipse itself.
export MAVEN_OPTS="-Xmx512m"
file://${basedir}/target/repository
in eclipse-trgt-platform/template/org.apache.directory.studio.eclipse-trgt-platform.template
with the actual path, e.g. file:///C:/Development/studio/eclipse-trgt-platform/target/repository
You can use either of those two methods to build the project :
Build the ‘Eclipse Target Platform’ and generate MANIFEST.MF files first
mvn -f pom-first.xml clean install
Build the main eclipse artifacts using Tycho
mvn clean install
On Linux / Mac OS X :
$ ./build.sh
or on Windows :
> build.bat
Unit tests included in src/test/java of each plugin are executed automatically and run in ‘test’ phase
Core integration tests in tests/test.integration.core are executed automatically and run in ‘integration-test’ phase
SWTBot based UI integration tests in tests/test.integration.ui are disabled by default. They can be enabled with -Denable-ui-tests
. A failing test generates a screenshot. To not block the developer computer they can run within a virtual framebuffer:
export DISPLAY=:99 Xvfb :99 -screen 0 1024x768x16 &
Tycho doesn't handle snapshot dependencies well. The first time a snapshot dependency is used within the build it is cached in ~/.m2/repository/p2
. Afterwards any change in the dependency (e.g. ApacheDS or LDAP API) is the considered unless it is deleted from the cache.
Recommended IDE is ‘Eclipse (Luna) for RCP Developers’: http://www.eclipse.org/downloads/packages/eclipse-rcp-and-rap-developers/lunasr2
Import ‘Eclipse Target Platorm’ project first
Initialize target platform
eclipse-trgt-platform.target
file with the ‘Target Editor’Import the main plugins
During import some Maven plugin connectors need to be installed, accept the installation and restart.
The build produces binaries for all platforms. Archived versions can be found in product/target/products/
, unpacked versions can be found below product/target/products/org.apache.directory.studio.product
tentative, not fully tested yet...
We release the following artifacts:
Test the release build: rat check, javadoc and source jar generation, GPG signing, userguide generation
mvn -f pom-first.xml clean install mvn -Papache-release -Duserguides clean install
Run UI tests (if possible on all platforms)
mvn clean install -Denable-ui-tests
As Tycho doesn't support the maven-release-plugin the release process is as follows:
We use a release number scheme that suites for both, Maven and Eclipse.
<MAJOR>.<MINOR>.<PATCH>.v<YYYYMMDD>[-M<X>|RC<X>]
Example for milestone version: 2.0.0.v20150529-M9
. Example for GA version: 2.0.1.v20150529
.
Define a variable for later use:
export VERSION=2.0.0.v20150529-M9
Also create an empty directory used during the release process and store it in a variable:
export RELEASE_DIR=$(pwd)
cd $RELEASE_DIR svn copy https://svn.apache.org/repos/asf/directory/studio/trunk https://svn.apache.org/repos/asf/directory/studio/branches/$VERSION -m "Prepare release $VERSION" svn checkout https://svn.apache.org/repos/asf/directory/studio/branches/$VERSION branch-$VERSION cd branch-$VERSION
find . -name pom-first.xml | xargs sed -i 's/2.0.0-SNAPSHOT/'$VERSION'/' find . -name pom-first.xml | xargs sed -i 's/2.0.0.qualifier/'$VERSION'/' mvn -f pom-first.xml clean install mvn org.eclipse.tycho:tycho-versions-plugin:0.22.0:set-version -DnewVersion=$VERSION
svn commit -m "Set version number for release $VERSION"
cd $RELEASE_DIR svn copy https://svn.apache.org/repos/asf/directory/studio/branches/$VERSION https://svn.apache.org/repos/asf/directory/studio/tags/$VERSION -m "Tag release $VERSION" svn checkout https://svn.apache.org/repos/asf/directory/studio/tags/$VERSION tag-$VERSION cd tag-$VERSION
mvn -f pom-first.xml clean install mvn -Papache-release -Duserguides -DretryFailedDeploymentCount=3 clean deploy
See https://repository.apache.org/#stagingRepositories.
There is a script that collects and signs all update sites and distribution packages.
For non-interactive signing with GPG agent define env variable:
export RELEASE_KEY=28686142
Run the dist script:
cd dist ./dist.sh
Afterwards all distribution packages are located in target
.
Upload target/$VERSION
to people.apache.org
scp -r target/$VERSION people.apache.org:~/public_html/
and start the vote.
After successful vote we can publish the artifacts
dist/target
can be used as-is.Wait 24h for mirror rsync.
The update site https://svn.apache.org/repos/asf/directory/site/trunk/content/studio/update needs to be updated.
In the following files
change the location path to the new release and also update the p2.timestamp
to the current timestamp milliseconds (hint: date +%s000
)
Update news and download links
lib/path.pm
TODO
Delete old releases.
How to search features, plugins, versions in P2 repo?