Skip to content

Commit 6413b48

Browse files
committed
Release 0.2
1 parent 2a6e20a commit 6413b48

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ maven { url "http://repository-tangram.forge.cloudbees.com/snapshot" }
168168
and the dependency to the artifact in the dependencies section.
169169

170170
```
171-
compile "dinistiq:dinistiq:0.2" // SNAPHOST for now
171+
compile "dinistiq:dinistiq:0.2"
172172
```
173173

174174
Projects built with legacy tool Apache Maven need the following steps:
@@ -179,8 +179,8 @@ module pom.xml
179179
<dependencies>
180180
...
181181
<dependency>
182-
<groupId>mysql</groupId>
183-
<artifactId>mysql-connector-java</artifactId>
182+
<groupId>dinistiq</groupId>
183+
<artifactId>dinistiq</artifactId>
184184
</dependency>
185185
...
186186
</dependencies>
@@ -194,7 +194,7 @@ base pom.xml
194194
<dependency>
195195
<groupId>dinistiq</groupId>
196196
<artifactId>dinistiq</artifactId>
197-
<versions>0.2</version><!-- SNAPHOST for now -->
197+
<versions>0.2</version>
198198
</dependency>
199199
...
200200
</dependencyManagement>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defaultTasks 'clean', 'build'
2020

2121
println "Gradle: ${gradle.gradleVersion}"
2222

23-
version = '0.2-SNAPSHOT'
23+
version = '0.2'
2424

2525
apply plugin: 'java'
2626
apply plugin: 'maven'

0 commit comments

Comments
 (0)