From 3bfab0c2a3f9e62748a9493f415f81d03168b1f6 Mon Sep 17 00:00:00 2001 From: Pascale Borscia Date: Thu, 24 Sep 2015 11:39:17 +0200 Subject: [PATCH] release 0.1.0 --- cepheus-broker/docker/Dockerfile | 4 ++-- cepheus-broker/pom.xml | 2 +- cepheus-cep/docker/Dockerfile | 4 ++-- cepheus-cep/pom.xml | 2 +- cepheus-ngsi/pom.xml | 2 +- doc/admin/broker.md | 6 +++--- doc/admin/cep.md | 6 +++--- doc/examples/mocks/mock-iotagent/pom.xml | 2 +- doc/examples/mocks/mock-orion/pom.xml | 2 +- docker/Dockerfile | 4 ++-- fiware-lab/install.sh | 4 ++-- pom.xml | 2 +- 12 files changed, 20 insertions(+), 20 deletions(-) diff --git a/cepheus-broker/docker/Dockerfile b/cepheus-broker/docker/Dockerfile index 475eba77..f624b197 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.0-SNAPSHOT -ENV CEPHEUS_REPO snapshots +ENV CEPHEUS_VERSION 0.1.0 +ENV CEPHEUS_REPO releases WORKDIR /opt/cepheus diff --git a/cepheus-broker/pom.xml b/cepheus-broker/pom.xml index 1f694ab2..e6f5fca2 100644 --- a/cepheus-broker/pom.xml +++ b/cepheus-broker/pom.xml @@ -5,7 +5,7 @@ cepheus com.orange.cepheus - 0.1.0-SNAPSHOT + 0.1.0 4.0.0 diff --git a/cepheus-cep/docker/Dockerfile b/cepheus-cep/docker/Dockerfile index 2bb9e268..959a3c5a 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.0-SNAPSHOT -ENV CEPHEUS_REPO snapshots +ENV CEPHEUS_VERSION 0.1.0 +ENV CEPHEUS_REPO releases WORKDIR /opt/cepheus diff --git a/cepheus-cep/pom.xml b/cepheus-cep/pom.xml index bbd8b150..95c1dc91 100644 --- a/cepheus-cep/pom.xml +++ b/cepheus-cep/pom.xml @@ -5,7 +5,7 @@ cepheus com.orange.cepheus - 0.1.0-SNAPSHOT + 0.1.0 4.0.0 diff --git a/cepheus-ngsi/pom.xml b/cepheus-ngsi/pom.xml index 88768b43..67c92527 100644 --- a/cepheus-ngsi/pom.xml +++ b/cepheus-ngsi/pom.xml @@ -5,7 +5,7 @@ com.orange.cepheus cepheus - 0.1.0-SNAPSHOT + 0.1.0 ../pom.xml 4.0.0 diff --git a/doc/admin/broker.md b/doc/admin/broker.md index 8995207b..128d4455 100644 --- a/doc/admin/broker.md +++ b/doc/admin/broker.md @@ -26,13 +26,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.0-SNAPSHOT` or `LATEST`. +where `XXXX` is the version you want, like `0.1.0` 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 "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=com.orange.cepheus&a=cepheus-broker&v=LATEST" + wget "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=com.orange.cepheus&a=cepheus-broker&v=LATEST" ## Running @@ -52,7 +52,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 "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=com.orange.cepheus&a=cepheus-broker&v=LATEST&p=deb" + wget "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 730ebf18..617dd081 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.0-SNAPSHOT` or `LATEST`. +where `XXXX` is the version you want, like `0.1.0` 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 "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=com.orange.cepheus&a=cepheus-cep&v=LATEST" + wget "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 "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=com.orange.cepheus&a=cepheus-cep&v=LATEST&p=deb" + wget "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 29bfb3c4..54b8e8e0 100644 --- a/doc/examples/mocks/mock-iotagent/pom.xml +++ b/doc/examples/mocks/mock-iotagent/pom.xml @@ -22,7 +22,7 @@ com.orange.cepheus cepheus-ngsi - 0.1.0-SNAPSHOT + 0.1.0 org.springframework.boot diff --git a/doc/examples/mocks/mock-orion/pom.xml b/doc/examples/mocks/mock-orion/pom.xml index d57df161..84b2e367 100644 --- a/doc/examples/mocks/mock-orion/pom.xml +++ b/doc/examples/mocks/mock-orion/pom.xml @@ -22,7 +22,7 @@ com.orange.cepheus cepheus-ngsi - 0.1.0-SNAPSHOT + 0.1.0 org.springframework.boot diff --git a/docker/Dockerfile b/docker/Dockerfile index e081cae0..de290d5e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,8 +3,8 @@ FROM java:8-jre MAINTAINER FIWARE Cepheus Team -ENV CEPHEUS_VERSION 0.1.0-SNAPSHOT -ENV CEPHEUS_REPO snapshots +ENV CEPHEUS_VERSION 0.1.0 +ENV CEPHEUS_REPO releases # Install Supervisor RUN apt-get update && apt-get install -y supervisor wget diff --git a/fiware-lab/install.sh b/fiware-lab/install.sh index fcc027a7..8f5eebfd 100644 --- a/fiware-lab/install.sh +++ b/fiware-lab/install.sh @@ -2,8 +2,8 @@ # Setup Cepheus-CEP and Cepheus-Broker on Ubuntu 14.04 (trusty) # Cepheus version -REPO="snapshots" # "releases" -VERSION="0.1.0-SNAPSHOT" # "0.1.0" +REPO="releases" # "releases" +VERSION="0.1.0" # "0.1.0" # Check and echo all commands set -e diff --git a/pom.xml b/pom.xml index 0b9390b7..ce425ee0 100755 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.orange.cepheus cepheus pom - 0.1.0-SNAPSHOT + 0.1.0 cepheus-ngsi cepheus-cep