diff --git a/cepheus-broker/docker/Dockerfile b/cepheus-broker/docker/Dockerfile index 4693c5cd..69362344 100644 --- a/cepheus-broker/docker/Dockerfile +++ b/cepheus-broker/docker/Dockerfile @@ -3,8 +3,8 @@ FROM java:8-jre MAINTAINER FIWARE Cepheus Team -ENV CEPHEUS_VERSION 0.1.5-SNAPSHOT -ENV CEPHEUS_REPO snapshots +ENV CEPHEUS_VERSION 0.1.5 +ENV CEPHEUS_REPO releases WORKDIR /opt/cepheus diff --git a/cepheus-broker/pom.xml b/cepheus-broker/pom.xml index 50bbc15b..39af513b 100644 --- a/cepheus-broker/pom.xml +++ b/cepheus-broker/pom.xml @@ -5,7 +5,7 @@ cepheus com.orange.cepheus - 0.1.5-SNAPSHOT + 0.1.5 4.0.0 diff --git a/cepheus-cep/docker/Dockerfile b/cepheus-cep/docker/Dockerfile index ebba179d..18f4f217 100644 --- a/cepheus-cep/docker/Dockerfile +++ b/cepheus-cep/docker/Dockerfile @@ -3,8 +3,8 @@ FROM java:8-jre MAINTAINER FIWARE Cepheus Team -ENV CEPHEUS_VERSION 0.1.5-SNAPSHOT -ENV CEPHEUS_REPO snapshots +ENV CEPHEUS_VERSION 0.1.5 +ENV CEPHEUS_REPO releases WORKDIR /opt/cepheus diff --git a/cepheus-cep/pom.xml b/cepheus-cep/pom.xml index a202c533..56339b73 100644 --- a/cepheus-cep/pom.xml +++ b/cepheus-cep/pom.xml @@ -5,7 +5,7 @@ cepheus com.orange.cepheus - 0.1.5-SNAPSHOT + 0.1.5 4.0.0 diff --git a/cepheus-ngsi/README.md b/cepheus-ngsi/README.md index daba65c4..92529d5d 100644 --- a/cepheus-ngsi/README.md +++ b/cepheus-ngsi/README.md @@ -18,7 +18,7 @@ under the Apache Licence Version 2 to ease its reuse by other FIWARE projects. com.orange.cepheus cepheus-ngsi - 0.1.5-SNAPSHOT + 0.1.5 ``` @@ -29,7 +29,7 @@ For java 7, you must add the classifier: com.orange.cepheus cepheus-ngsi java7 - 0.1.5-SNAPSHOT + 0.1.5 ``` @@ -37,7 +37,7 @@ For java 7, you must add the classifier: If you don't have `maven` installed on your machine, you can still download the standalone JAR using `wget` or any browser: - wget -O cepheus-ngsi.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=com.orange.cepheus&a=cepheus-ngsi&v=LATEST" + wget -O cepheus-ngsi.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=com.orange.cepheus&a=cepheus-ngsi&v=LATEST" ## Client The implementation provides the NgsiClient class for the standard operations and NgsiRestClient for the convenient operations. diff --git a/cepheus-ngsi/pom.xml b/cepheus-ngsi/pom.xml index c0e032dc..e20f287f 100644 --- a/cepheus-ngsi/pom.xml +++ b/cepheus-ngsi/pom.xml @@ -5,7 +5,7 @@ com.orange.cepheus cepheus - 0.1.5-SNAPSHOT + 0.1.5 ../pom.xml 4.0.0 diff --git a/doc/admin/broker.md b/doc/admin/broker.md index a230d3d1..e3f48376 100644 --- a/doc/admin/broker.md +++ b/doc/admin/broker.md @@ -27,13 +27,13 @@ If you have `maven`, you can run the following command: mvn dependency:get -DgroupId=com.orange.cepheus -DartifactId=cepheus-broker -Dversion=XXXX -Dtransitive=false -where `XXXX` is the version you want, like `0.1.5-SNAPSHOT` or `LATEST`. +where `XXXX` is the version you want, like `0.1.5` or `LATEST`. ### Download from [Sonatype Central repository](http://central.sonatype.org/) using wget If you don't have `maven` installed on your machine, you can still download the standalone JAR using `wget` or any browser: - wget -O cepheus-broker.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=com.orange.cepheus&a=cepheus-broker&v=LATEST" + wget -O cepheus-broker.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=com.orange.cepheus&a=cepheus-broker&v=LATEST" ## Running @@ -53,7 +53,7 @@ The Cepheus-Broker is also provided in a preconfigured Debian package to ease de Download the Debian package from [Sonatype Central repository](http://central.sonatype.org/) using `wget`: - wget -O cepheus-broker.deb "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=com.orange.cepheus&a=cepheus-broker&v=LATEST&p=deb" + wget -O cepheus-broker.deb "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=com.orange.cepheus&a=cepheus-broker&v=LATEST&p=deb" ### Installing diff --git a/doc/admin/cep.md b/doc/admin/cep.md index 1aa11b44..4f8b0772 100644 --- a/doc/admin/cep.md +++ b/doc/admin/cep.md @@ -26,13 +26,13 @@ If you have `maven`, you can run the following command: mvn dependency:get -DgroupId=com.orange.cepheus -DartifactId=cepheus-cep -Dversion=XXXX -Dtransitive=false -where `XXXX` is the version you want, like `0.1.5-SNAPSHOT` or `LATEST`. +where `XXXX` is the version you want, like `0.1.5` or `LATEST`. ### Download from [Sonatype Central repository](http://central.sonatype.org/) using wget If you don't have `maven` installed on your machine, you can still download the standalone JAR using `wget` or any browser: - wget -O cepheus-cep.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=com.orange.cepheus&a=cepheus-cep&v=LATEST" + wget -O cepheus-cep.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=com.orange.cepheus&a=cepheus-cep&v=LATEST" ## Running @@ -52,7 +52,7 @@ The Cepheus-CEP is also provided in a preconfigured Debian package to ease deplo Download the Debian package from [Sonatype Central repository](http://central.sonatype.org/) using `wget`: - wget -O cepheus-cep.deb "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=com.orange.cepheus&a=cepheus-cep&v=LATEST&p=deb" + wget -O cepheus-cep.deb "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=com.orange.cepheus&a=cepheus-cep&v=LATEST&p=deb" ### Installing diff --git a/doc/examples/mocks/mock-iotagent/pom.xml b/doc/examples/mocks/mock-iotagent/pom.xml index 6c7cac0a..f210ff67 100644 --- a/doc/examples/mocks/mock-iotagent/pom.xml +++ b/doc/examples/mocks/mock-iotagent/pom.xml @@ -6,7 +6,7 @@ com.orange.cepheus mock-iotagent - 1.0-SNAPSHOT + 1.0 org.springframework.boot @@ -22,7 +22,7 @@ com.orange.cepheus cepheus-ngsi - 0.1.2-SNAPSHOT + 0.1.2 org.springframework.boot diff --git a/doc/examples/mocks/mock-orion/pom.xml b/doc/examples/mocks/mock-orion/pom.xml index 5f9aae71..27f832a0 100644 --- a/doc/examples/mocks/mock-orion/pom.xml +++ b/doc/examples/mocks/mock-orion/pom.xml @@ -6,7 +6,7 @@ com.orange.cepheus mock-orion - 1.0-SNAPSHOT + 1.0 org.springframework.boot @@ -22,7 +22,7 @@ com.orange.cepheus cepheus-ngsi - 0.1.2-SNAPSHOT + 0.1.2 org.springframework.boot diff --git a/docker/Dockerfile b/docker/Dockerfile index c70157cf..336b69c0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,8 +3,8 @@ FROM java:8-jre MAINTAINER FIWARE Cepheus Team -ENV CEPHEUS_VERSION 0.1.5-SNAPSHOT -ENV CEPHEUS_REPO snapshots +ENV CEPHEUS_VERSION 0.1.5 +ENV CEPHEUS_REPO releases # Install Supervisor RUN apt-get update && apt-get install -y supervisor wget diff --git a/pom.xml b/pom.xml index b984acd2..3327eeb4 100755 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.orange.cepheus cepheus pom - 0.1.5-SNAPSHOT + 0.1.5 cepheus-ngsi cepheus-cep