Skip to content

Commit d5a6c35

Browse files
committed
adding more documentation
1 parent cf27d3d commit d5a6c35

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

readme.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,36 @@ BioJava is licensed under LGPL 2.1.
66

77
Please visit our [homepage](http://www.biojava.org/).
88

9+
### Documentation
10+
11+
The [BioJava Cookbook](http://biojava.org/wiki/BioJava:CookBook) is a collection of simple examples that teach the basics for how to work with BioJava.
12+
13+
### Maven Repository
14+
15+
The [Maven Repository](http://biojava.org/download/maven/) contains the jars of all releases, as well as SNAPSHOT builds of the latest code base.
16+
17+
### Quick Installation
18+
19+
If you are using Maven you can add the BioJava repository by adding the following XML to your project pom.xml file:
20+
21+
```
22+
<repositories>
23+
<repository>
24+
<id>biojava-maven-repo</id>
25+
<name>BioJava repository</name>
26+
<url>http://www.biojava.org/download/maven/</url>
27+
</repository>
28+
</repositories>
29+
30+
<dependencies>
31+
<dependency>
32+
<groupId>org.biojava</groupId>
33+
<artifactId>biojava3-core</artifactId>
34+
<version>3.0.5</version>
35+
</dependency>
36+
<!-- other biojava jars as needed -->
37+
</dependencies>
38+
```
939
### Build Status
1040
[![Build Status](https://travis-ci.org/biojava/biojava.png)](https://travis-ci.org/biojava/biojava)
41+

0 commit comments

Comments
 (0)