Skip to content

Commit

Permalink
Repository config to use RELEASE and LATEST.
Browse files Browse the repository at this point in the history
  • Loading branch information
John May committed Mar 8, 2014
1 parent d9ef27f commit 3b16371
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,7 @@
# The Chemical Development Kit (CDK) # The Chemical Development Kit (CDK)


Copyright 1997-2014 The CDK Development Team Copyright 1997-2014 The CDK Development Team

License: LGPL v2, see doc/lgpl.license License: LGPL v2, see doc/lgpl.license


## Introduction ## Introduction
Expand Down Expand Up @@ -117,15 +118,21 @@ The Maven artefacts are currently deployed to the European Bioinformatics Instit
<repository> <repository>
<id>ebi-repo</id> <id>ebi-repo</id>
<url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo/</url> <url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository> </repository>
<repository> <repository>
<id>ebi-repo-snapshots</id> <id>ebi-repo-snapshots</id>
<url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo-snapshots/</url> <url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
</repository> </repository>
</repositories> </repositories>
``` ```


You can then use a cdk module by specifying a dependency in the `pom.xml`. Any additional requirements of the module will also be included. The `RELEASE` specifies the latest released version whilst `LATEST` will provide the latest development build (snapshot). You may also specify a specific version. You can then use a cdk module by specifying a dependency in the `pom.xml`. Any additional requirements of the module will also be included. The `RELEASE` specifies the latest released version whilst `LATEST` will provide the latest development build (snapshot). You may also specify a specific version. The `RELEASE` tag will not work if the snapshots repo has releases turned on.


```xml ```xml
<dependencies> <dependencies>
Expand Down

0 comments on commit 3b16371

Please sign in to comment.