Skip to content

Commit ee7cc21

Browse files
2-alpha version
1 parent 7377c5d commit ee7cc21

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

build.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
chmod +x mvnw
2-
./mvnw clean package -Pnative -Dquarkus.profile=staging -Dquarkus.native.container-build=true -Dquarkus.native.container-runtime=docker
3-
docker rmi quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-x86_64 --force
4-
docker build -f src/main/docker/Dockerfile.native -t quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-x86_64 .
5-
docker push quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-x86_64
2+
./mvnw clean package -Pnative -Dquarkus.native.container-build=true -Dquarkus.native.container-runtime=docker
3+
docker rmi quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-x86_64 --force
4+
docker build -f src/main/docker/Dockerfile.native -t quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-x86_64 .
5+
docker push quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-x86_64
66
#docker run -it --rm -p 8080:8080 --net host quay.io/qiot/qiot-integrator

buildaarch64.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
docker run --rm --privileged multiarch/qemu-user-static:register --reset
2-
docker rmi quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-aarch64 --force
3-
docker build -f src/main/docker/Dockerfile.native.multiarch -t quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-aarch64 .
4-
docker push quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-aarch64
2+
docker rmi quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-aarch64 --force
3+
docker build -f src/main/docker/Dockerfile.native.multiarch -t quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-aarch64 .
4+
docker push quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-aarch64
55
#docker run -it --rm -p 8080:8080 --net host quay.io/qiot/qiot-integrator

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
xmlns="http://maven.apache.org/POM/4.0.0"
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
7-
<groupId>org.qiot.covid19.edge</groupId>
7+
<groupId>io.qiot.covid19.edge</groupId>
88
<artifactId>edge-sensors-emulator</artifactId>
9-
<version>1.1.0</version>
9+
<version>2.0.0-SNAPSHOT</version>
1010
<properties>
1111
<compiler-plugin.version>3.8.1</compiler-plugin.version>
1212
<maven.compiler.parameters>true</maven.compiler.parameters>
1313
<maven.compiler.source>11</maven.compiler.source>
1414
<maven.compiler.target>11</maven.compiler.target>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
17-
<quarkus-plugin.version>1.11.1.Final</quarkus-plugin.version>
17+
<quarkus-plugin.version>1.12.2.Final</quarkus-plugin.version>
1818
<quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id>
1919
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
20-
<quarkus.platform.version>1.11.1.Final</quarkus.platform.version>
20+
<quarkus.platform.version>1.12.2.Final</quarkus.platform.version>
2121
<surefire-plugin.version>2.22.1</surefire-plugin.version>
2222
</properties>
2323
<dependencyManagement>

src/main/java/io/qiot/covid19/edge/emulator/services/GasService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
/**
11-
* @author abattagl
11+
* @author andreabattaglia
1212
*
1313
*/
1414
public interface GasService {

src/main/java/io/qiot/covid19/edge/emulator/services/GasServiceImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
/**
28-
* @author abattagl
28+
* @author andreabattaglia
2929
*
3030
*/
3131
@ApplicationScoped

src/main/java/io/qiot/covid19/edge/emulator/services/ParticulatesService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
/**
11-
* @author abattagl
11+
* @author andreabattaglia
1212
*
1313
*/
1414
public interface ParticulatesService {

src/main/java/io/qiot/covid19/edge/emulator/services/ParticulatesServiceImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
/**
25-
* @author abattagl
25+
* @author andreabattaglia
2626
*
2727
*/
2828
@ApplicationScoped

0 commit comments

Comments
 (0)