Skip to content

Commit 48e54df

Browse files
author
Evgeniy Sinev
committed
#95799 Changed version to 1.3-SNAPSHOT
1 parent 6632591 commit 48e54df

4 files changed

Lines changed: 8 additions & 11 deletions

File tree

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# pos-proxy
22

3-
[![Build Status](https://travis-ci.org/payneteasy/pos-proxy.svg?branch=master)](https://travis-ci.org/payneteasy/pos-proxy)
4-
[![CircleCI](https://circleci.com/gh/payneteasy/pos-proxy.svg?style=svg)](https://circleci.com/gh/payneteasy/pos-proxy)
5-
63
## How it works
74

85
POS Proxy is a web server that redirects json requests to a POS terminal connected via USB.
@@ -61,13 +58,13 @@ docker run -it -p 8081:8081/tcp payneteasy/pos-proxy:arm32v7
6158

6259
```bash
6360
./mvnw clean package
64-
cd server/target && java -jar server-1.0-1-SNAPSHOT-jar-with-dependencies.jar
61+
cd server/target && java -jar server-1.3-SNAPSHOT-jar-with-dependencies.jar
6562
```
6663

6764
## How to run from release page
6865

6966
```bash
70-
wget https://github.com/payneteasy/pos-proxy/releases/download/1.0-1/server-1.0-1-SNAPSHOT-jar-with-dependencies.jar
67+
wget https://github.com/payneteasy/pos-proxy/releases/download/1.3.0/pos-proxy-1.3.0.jar
7168
java -jar server-1.0-1-SNAPSHOT-jar-with-dependencies.jar
7269
```
7370

@@ -78,12 +75,12 @@ You can change the listening port by pass this via -D option or via environment
7875
Via environment variable:
7976
```bash
8077
export HTTP_SERVER_PORT=9090
81-
java -jar server-1.0-1-SNAPSHOT-jar-with-dependencies.jar
78+
java -jar server-1.3-SNAPSHOT-jar-with-dependencies.jar
8279
```
8380

8481
Via -D option:
8582
```bash
86-
java -DHTTP_SERVER_PORT=9090 -jar server-1.0-1-SNAPSHOT-jar-with-dependencies.jar
83+
java -DHTTP_SERVER_PORT=9090 -jar server-1.3-SNAPSHOT-jar-with-dependencies.jar
8784
```
8885

8986
## How to connect to a Verifone terminal via USB cable

integration-testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.payneteasy</groupId>
1212
<artifactId>pos-proxy</artifactId>
13-
<version>1.2-SNAPSHOT</version>
13+
<version>1.3-SNAPSHOT</version>
1414
</parent>
1515

1616
<properties>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<artifactId>pos-proxy</artifactId>
66
<groupId>com.payneteasy</groupId>
7-
<version>1.2-SNAPSHOT</version>
7+
<version>1.3-SNAPSHOT</version>
88

99
<name>pos robot ${project.version}</name>
1010

@@ -105,7 +105,7 @@
105105
<dependency>
106106
<groupId>com.payneteasy.pos-proxy</groupId>
107107
<artifactId>server</artifactId>
108-
<version>1.2-SNAPSHOT</version>
108+
<version>1.3-SNAPSHOT</version>
109109
</dependency>
110110

111111
<dependency>

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.payneteasy</groupId>
1313
<artifactId>pos-proxy</artifactId>
14-
<version>1.2-SNAPSHOT</version>
14+
<version>1.3-SNAPSHOT</version>
1515
</parent>
1616

1717
<properties>

0 commit comments

Comments
 (0)