DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| No Format |
|---|
mvn bundle:clean |
bundle:index
The index goal allows the creation of an OBR repository based on a set of jars in a maven repository.
Configuration:
- obrRepository path to local OBR, defaults to <local-maven-repository>
/repository.xml - urlTemplate template for generating urls for OBR resources
- mavenRepository path to the maven repository, defaults to <local-maven-repository>
Possible values for the urlTemplate are:
- maven this will create a maven based url such as
mvn:groupid/artifactid/version - pattern with the following placeholders:
%vbundle version%sbundle symbolic name%ffile name%pfile path
Concurrent updates
With a remote OBR, several uploads may occur at the same time. However, the remote OBR is centralized in one file, so concurrent modification must be avoided. To achieve this, the plug-in implements a locking system. Each time the plug-in tries to modify the file it sets a file based lock. If it can't take the lock, it will wait and retry. After 3 attempts the upload process fails. To bypass this lock add -DignoreLock to the command-line (or add <ignoreLock>true<ignoreLock> to the configuration section of your Pom).
...