I am new to Maven and Codenvy. Trying to build a simple Jar project there. The build fails everytime, although I seem to include all necessary dependencies in pom.xml file.
In my pom.xml I have:
<repositories>
<repository>
<id>biojava-maven-repo</id>
<name>BioJava repository</name>
<url>http://www.biojava.org/download/maven/</url>
</repository>
</repositories>
...
<dependency>
<groupId>org.biojava</groupId>
<artifactId>biojava3-core</artifactId>
<version>3.0.6</version>
<scope>test</scope>
</dependency>
...
And in my java file I have: ...
import org.biojava3.core.sequence;
...
What am I doing wrong here?