Skip to content

Commit

Permalink
bump dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
Razumain committed Mar 31, 2022
1 parent 4eb292a commit e43637f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:11-jre

ADD target/cmc-ca-client-base-1.0.1.jar /app.jar
ADD target/cmc-ca-client-base-1.0.2-SNAPSHOT.jar /app.jar
ENTRYPOINT ["java","-jar","/app.jar"]

# Main web port
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-debug
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:11-jre

ADD target/cmc-ca-client-base-1.0.1.jar /app.jar
ADD target/cmc-ca-client-base-1.0.2-SNAPSHOT.jar /app.jar

# This ENTRYPOINT enables attachement of a debugger on port 8000. This port is automtically exposed on the docker container.
ENTRYPOINT ["java","-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8000","-jar","/app.jar"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-softhsm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y pcscd libccid libpcsclite-dev libssl-de
# Setup softhsm
RUN rm -rf /var/lib/softhsm/tokens && mkdir /var/lib/softhsm/tokens

ADD target/cmc-ca-client-base-1.0.1.jar /app.jar
ADD target/cmc-ca-client-base-1.0.2-SNAPSHOT.jar /app.jar
COPY src/main/resources/cfg/start.sh /

ENTRYPOINT /start.sh
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>se.swedenconnect.ca</groupId>
<artifactId>cmc-ca-client-base</artifactId>
<version>1.0.1</version>
<version>1.0.2-SNAPSHOT</version>

<name>CA CMC client base</name>
<description>CA CMC Client base for administration of CA services</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/cfg/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
| |___ / ___ \ \__ \ | __/ | | \ V / | | | (__ | __/ | |___ | | | | | |___ | (__ | | | | | __/ | | | | | |_
\____| /_/ \_\ |___/ \___| |_| \_/ |_| \___| \___| \____| |_| |_| \____| \___| |_| |_| \___| |_| |_| \__|

1.0.1
1.0.2-SNAPSHOT
Powered by Spring Boot ${spring-boot.version}

0 comments on commit e43637f

Please sign in to comment.