@@ -33,7 +33,7 @@ desired connector.
3333
3434Artifacts
3535--------------
36- Darwin artifacts are published for scala 2.10, 2.11, 2.12 and 2.13 (from version 1.0.14-SNAPSHOT ).
36+ Darwin artifacts are published for scala 2.10, 2.11, 2.12 and 2.13 (from version 1.0.14).
3737From version 1.0.2 Darwin is available from maven central so there is no need to configure additional repositories
3838in your project.
3939
@@ -43,14 +43,14 @@ In order to access to Darwin core functionalities add the core dependency to you
4343
4444#### sbt
4545``` scala
46- libraryDependencies += " it.agilelab" %% " darwin-core" % " 1.0.14-SNAPSHOT "
46+ libraryDependencies += " it.agilelab" %% " darwin-core" % " 1.0.14"
4747```
4848#### maven
4949``` xml
5050<dependency >
5151 <groupId >it.agilelab</groupId >
5252 <artifactId >darwin-core_2.11</artifactId >
53- <version >1.0.14-SNAPSHOT </version >
53+ <version >1.0.14</version >
5454</dependency >
5555```
5656
@@ -60,14 +60,14 @@ Then add the connector of your choice, either HBase:
6060
6161#### sbt
6262``` scala
63- libraryDependencies += " it.agilelab" %% " darwin-hbase-connector" % " 1.0.14-SNAPSHOT "
63+ libraryDependencies += " it.agilelab" %% " darwin-hbase-connector" % " 1.0.14"
6464```
6565#### maven
6666``` xml
6767<dependency >
6868 <groupId >it.agilelab</groupId >
6969 <artifactId >darwin-hbase-connector_2.11</artifactId >
70- <version >1.0.14-SNAPSHOT </version >
70+ <version >1.0.14</version >
7171</dependency >
7272```
7373
@@ -78,14 +78,14 @@ Or PostgreSql:
7878### sbt
7979
8080``` scala
81- libraryDependencies += " it.agilelab" %% " darwin-postgres-connector" % " 1.0.14-SNAPSHOT "
81+ libraryDependencies += " it.agilelab" %% " darwin-postgres-connector" % " 1.0.14"
8282```
8383#### maven
8484``` xml
8585<dependency >
8686 <groupId >it.agilelab</groupId >
8787 <artifactId >darwin-postgres-connector_2.11</artifactId >
88- <version >1.0.14-SNAPSHOT </version >
88+ <version >1.0.14</version >
8989</dependency >
9090```
9191
@@ -97,14 +97,14 @@ Or Rest
9797### sbt
9898
9999``` scala
100- libraryDependencies += " it.agilelab" %% " darwin-rest-connector" % " 1.0.14-SNAPSHOT "
100+ libraryDependencies += " it.agilelab" %% " darwin-rest-connector" % " 1.0.14"
101101```
102102#### maven
103103``` xml
104104<dependency >
105105 <groupId >it.agilelab</groupId >
106106 <artifactId >darwin-rest-connector_2.11</artifactId >
107- <version >1.0.14-SNAPSHOT </version >
107+ <version >1.0.14</version >
108108</dependency >
109109```
110110
@@ -119,14 +119,14 @@ Or Mock (only for test scenarios):
119119### sbt
120120
121121``` scala
122- libraryDependencies += " it.agilelab" %% " darwin-mock-connector" % " 1.0.14-SNAPSHOT "
122+ libraryDependencies += " it.agilelab" %% " darwin-mock-connector" % " 1.0.14"
123123```
124124#### maven
125125``` xml
126126<dependency >
127127 <groupId >it.agilelab</groupId >
128128 <artifactId >darwin-mock-connector_2.11</artifactId >
129- <version >1.0.14-SNAPSHOT </version >
129+ <version >1.0.14</version >
130130</dependency >
131131```
132132
0 commit comments