Skip to content

Commit

Permalink
readme changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rcabanasdepaz committed Jun 8, 2020
1 parent 65f9811 commit a5f489b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![GitHub version](https://badge.fury.io/gh/idsia%2Fcrema.svg)](https://badge.fury.io/gh/idsia%2Fcrema)
# CreMA

CreMA is a open-source java toolbox that provides multiple
Expand Down Expand Up @@ -42,4 +43,26 @@ ve.setFactors(model.getFactors());
System.out.println(ve.run(x));
```
```

## Installation

Add the following code in the pom.xml of your project:

```
<repositories>
<repository>
<id>cremaRepo</id>
<url>https://raw.github.com/idsia/crema/mvn-repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>ch.idsia</groupId>
<artifactId>crema</artifactId>
<version>0.1.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
```
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.idsia</groupId>
<artifactId>CreMA</artifactId>
<artifactId>crema</artifactId>
<version>0.1.1</version>

<name>Credal Model Algorithms</name>
Expand Down

0 comments on commit a5f489b

Please sign in to comment.