Skip to content
This repository was archived by the owner on Oct 20, 2022. It is now read-only.

Commit bd3fe26

Browse files
author
Jenkins CI
committed
release 1.0.0
1 parent fafdab9 commit bd3fe26

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

cepheus-broker/docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
FROM java:8-jre
44
MAINTAINER FIWARE Cepheus Team
55

6-
ENV CEPHEUS_VERSION 1.0.0-SNAPSHOT
7-
ENV CEPHEUS_REPO snapshots
6+
ENV CEPHEUS_VERSION 1.0.0
7+
ENV CEPHEUS_REPO releases
88

99
WORKDIR /opt/cepheus
1010

cepheus-broker/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>cepheus</artifactId>
77
<groupId>com.orange.cepheus</groupId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

cepheus-cep/docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
FROM java:8-jre
44
MAINTAINER FIWARE Cepheus Team
55

6-
ENV CEPHEUS_VERSION 1.0.0-SNAPSHOT
7-
ENV CEPHEUS_REPO snapshots
6+
ENV CEPHEUS_VERSION 1.0.0
7+
ENV CEPHEUS_REPO releases
88

99
WORKDIR /opt/cepheus
1010

cepheus-cep/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>cepheus</artifactId>
77
<groupId>com.orange.cepheus</groupId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

doc/admin/broker.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ If you have `maven`, you can run the following command:
2727

2828
mvn dependency:get -DgroupId=com.orange.cepheus -DartifactId=cepheus-broker -Dversion=XXXX -Dtransitive=false
2929

30-
where `XXXX` is the version you want, like `1.0.0-SNAPSHOT` or `LATEST`.
30+
where `XXXX` is the version you want, like `1.0.0` or `LATEST`.
3131

3232
### Download from [Sonatype Central repository](http://central.sonatype.org/) using wget
3333

3434
If you don't have `maven` installed on your machine, you can still download the standalone JAR using `wget` or any browser:
3535

36-
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"
36+
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"
3737

3838
## Running
3939

@@ -53,7 +53,7 @@ The Cepheus-Broker is also provided in a preconfigured Debian package to ease de
5353

5454
Download the Debian package from [Sonatype Central repository](http://central.sonatype.org/) using `wget`:
5555

56-
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"
56+
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"
5757

5858
### Installing
5959

doc/admin/cep.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ If you have `maven`, you can run the following command:
2626

2727
mvn dependency:get -DgroupId=com.orange.cepheus -DartifactId=cepheus-cep -Dversion=XXXX -Dtransitive=false
2828

29-
where `XXXX` is the version you want, like `1.0.0-SNAPSHOT` or `LATEST`.
29+
where `XXXX` is the version you want, like `1.0.0` or `LATEST`.
3030

3131
### Download from [Sonatype Central repository](http://central.sonatype.org/) using wget
3232

3333
If you don't have `maven` installed on your machine, you can still download the standalone JAR using `wget` or any browser:
3434

35-
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"
35+
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"
3636

3737
## Running
3838

@@ -52,7 +52,7 @@ The Cepheus-CEP is also provided in a preconfigured Debian package to ease deplo
5252

5353
Download the Debian package from [Sonatype Central repository](http://central.sonatype.org/) using `wget`:
5454

55-
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"
55+
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"
5656

5757
### Installing
5858

doc/examples/mocks/mock-iotagent/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.orange.cepheus</groupId>
88
<artifactId>mock-iotagent</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0</version>
1010

1111
<parent>
1212
<groupId>org.springframework.boot</groupId>

doc/examples/mocks/mock-orion/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.orange.cepheus</groupId>
88
<artifactId>mock-orion</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0</version>
1010

1111
<parent>
1212
<groupId>org.springframework.boot</groupId>

docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
FROM java:8-jre
44
MAINTAINER FIWARE Cepheus Team
55

6-
ENV CEPHEUS_VERSION 1.0.0-SNAPSHOT
7-
ENV CEPHEUS_REPO snapshots
6+
ENV CEPHEUS_VERSION 1.0.0
7+
ENV CEPHEUS_REPO releases
88

99
# Install Supervisor
1010
RUN apt-get update && apt-get install -y supervisor wget

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.orange.cepheus</groupId>
77
<artifactId>cepheus</artifactId>
88
<packaging>pom</packaging>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010
<modules>
1111
<module>cepheus-cep</module>
1212
<module>cepheus-broker</module>

0 commit comments

Comments
 (0)