Skip to content

Commit a5f489b

Browse files
committedJun 8, 2020
readme changes
1 parent 65f9811 commit a5f489b

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed
 

‎README.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
[![GitHub version](https://badge.fury.io/gh/idsia%2Fcrema.svg)](https://badge.fury.io/gh/idsia%2Fcrema)
12
# CreMA
23

34
CreMA is a open-source java toolbox that provides multiple
@@ -42,4 +43,26 @@ ve.setFactors(model.getFactors());
4243
System.out.println(ve.run(x));
4344
4445
45-
```
46+
```
47+
48+
## Installation
49+
50+
Add the following code in the pom.xml of your project:
51+
52+
```
53+
<repositories>
54+
<repository>
55+
<id>cremaRepo</id>
56+
<url>https://raw.github.com/idsia/crema/mvn-repo/</url>
57+
</repository>
58+
</repositories>
59+
60+
<dependencies>
61+
<dependency>
62+
<groupId>ch.idsia</groupId>
63+
<artifactId>crema</artifactId>
64+
<version>0.1.1</version>
65+
<scope>compile</scope>
66+
</dependency>
67+
</dependencies>
68+
```

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>ch.idsia</groupId>
5-
<artifactId>CreMA</artifactId>
5+
<artifactId>crema</artifactId>
66
<version>0.1.1</version>
77

88
<name>Credal Model Algorithms</name>

0 commit comments

Comments
 (0)
Please sign in to comment.