Skip to content

Commit

Permalink
2-alpha version
Browse files Browse the repository at this point in the history
  • Loading branch information
andreabattaglia committed Mar 12, 2021
1 parent 7377c5d commit ee7cc21
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
chmod +x mvnw
./mvnw clean package -Pnative -Dquarkus.profile=staging -Dquarkus.native.container-build=true -Dquarkus.native.container-runtime=docker
docker rmi quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-x86_64 --force
docker build -f src/main/docker/Dockerfile.native -t quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-x86_64 .
docker push quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-x86_64
./mvnw clean package -Pnative -Dquarkus.native.container-build=true -Dquarkus.native.container-runtime=docker
docker rmi quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-x86_64 --force
docker build -f src/main/docker/Dockerfile.native -t quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-x86_64 .
docker push quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-x86_64
#docker run -it --rm -p 8080:8080 --net host quay.io/qiot/qiot-integrator
6 changes: 3 additions & 3 deletions buildaarch64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
docker run --rm --privileged multiarch/qemu-user-static:register --reset
docker rmi quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-aarch64 --force
docker build -f src/main/docker/Dockerfile.native.multiarch -t quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-aarch64 .
docker push quay.io/qiotcovid19/edge-sensors-emulator:1.0.1-aarch64
docker rmi quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-aarch64 --force
docker build -f src/main/docker/Dockerfile.native.multiarch -t quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-aarch64 .
docker push quay.io/qiotcovid19/edge-sensors-emulator:2.0.0-alpha-aarch64
#docker run -it --rm -p 8080:8080 --net host quay.io/qiot/qiot-integrator
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.qiot.covid19.edge</groupId>
<groupId>io.qiot.covid19.edge</groupId>
<artifactId>edge-sensors-emulator</artifactId>
<version>1.1.0</version>
<version>2.0.0-SNAPSHOT</version>
<properties>
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<maven.compiler.parameters>true</maven.compiler.parameters>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus-plugin.version>1.11.1.Final</quarkus-plugin.version>
<quarkus-plugin.version>1.12.2.Final</quarkus-plugin.version>
<quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.platform.version>1.11.1.Final</quarkus.platform.version>
<quarkus.platform.version>1.12.2.Final</quarkus.platform.version>
<surefire-plugin.version>2.22.1</surefire-plugin.version>
</properties>
<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


/**
* @author abattagl
* @author andreabattaglia
*
*/
public interface GasService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


/**
* @author abattagl
* @author andreabattaglia
*
*/
@ApplicationScoped
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


/**
* @author abattagl
* @author andreabattaglia
*
*/
public interface ParticulatesService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


/**
* @author abattagl
* @author andreabattaglia
*
*/
@ApplicationScoped
Expand Down

0 comments on commit ee7cc21

Please sign in to comment.