Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
Start of 0.8.1-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Chan committed Sep 27, 2014
1 parent 8a09cca commit 14fd50d
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -14,4 +14,6 @@
.project
.classpath

.DS_Store

target/
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -18,7 +18,7 @@ If you have a Maven project, simply add the dependency to your `pom.xml`.
<dependency>
<groupId>io.prediction</groupId>
<artifactId>client</artifactId>
<version>0.8.0</version>
<version>0.8.1-SNAPSHOT</version>
</dependency>
</dependencies>
...
Expand All @@ -34,7 +34,7 @@ If you use Ivy, simply add the dependency to your `ivy.xml`.
<ivy-module ...>
...
<dependencies>
<dependency org="io.prediction" name="client" rev="0.8.0" />
<dependency org="io.prediction" name="client" rev="0.8.1-SNAPSHOT" />
...
</dependencies>
...
Expand All @@ -47,7 +47,7 @@ sbt
If you have an sbt project, add the library dependency to your build definition.

```Scala
libraryDependencies += "io.prediction" % "client" % "0.8.0"
libraryDependencies += "io.prediction" % "client" % "0.8.1-SNAPSHOT"
```


Expand Down
3 changes: 3 additions & 0 deletions examples/import/.gitignore
Expand Up @@ -13,3 +13,6 @@
.settings
.project
.classpath

.DS_Store

4 changes: 2 additions & 2 deletions examples/import/pom.xml
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.prediction.samples</groupId>
<artifactId>sample-import</artifactId>
<version>0.8.0</version>
<version>0.8.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>PredictionIO Java SDK Examples: Import</name>

<dependencies>
<dependency>
<groupId>io.prediction</groupId>
<artifactId>client</artifactId>
<version>0.8.0</version>
<version>0.8.1-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
3 changes: 3 additions & 0 deletions examples/quickstart_import/.gitignore
Expand Up @@ -13,3 +13,6 @@
.settings
.project
.classpath

.DS_Store

4 changes: 2 additions & 2 deletions examples/quickstart_import/pom.xml
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.prediction.samples</groupId>
<artifactId>quickstart-import</artifactId>
<version>0.8.0</version>
<version>0.8.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>PredictionIO Java SDK Examples: Quickstart Import</name>

<dependencies>
<dependency>
<groupId>io.prediction</groupId>
<artifactId>client</artifactId>
<version>0.8.0</version>
<version>0.8.1-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
3 changes: 3 additions & 0 deletions examples/quickstart_show/.gitignore
Expand Up @@ -13,3 +13,6 @@
.settings
.project
.classpath

.DS_Store

4 changes: 2 additions & 2 deletions examples/quickstart_show/pom.xml
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.prediction.samples</groupId>
<artifactId>quickstart-show</artifactId>
<version>0.8.0</version>
<version>0.8.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>PredictionIO Java SDK Examples: Quickstart Show</name>

<dependencies>
<dependency>
<groupId>io.prediction</groupId>
<artifactId>client</artifactId>
<version>0.8.0</version>
<version>0.8.1-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 14fd50d

Please sign in to comment.