Skip to content

Commit 232db90

Browse files
committed
Merge from develop
2 parents 96b4325 + 776c4a2 commit 232db90

File tree

26 files changed

+448
-689
lines changed

26 files changed

+448
-689
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,25 +49,25 @@ Run following command:
4949
SiVa project compiles **3 fat executable JAR** files that You can run after successfully building the
5050
project by issuing below commands:
5151

52-
**First start SiVa REST and SOAP web service**
52+
**First start SiVa REST and SOAP web service. NB! X.X.X denotes the version you are running.**
5353

5454
```bash
55-
./siva-parent/siva-webapp/target/siva-webapp-3.5.0.jar
55+
java -jar siva-parent/siva-webapp/target/siva-webapp-X.X.X-exec.jar
5656
```
5757

58-
**Second we need to start SiVa XRoad validation service**
58+
**Second we need to start SiVa XRoad validation service. NB! X.X.X denotes the version you are running.**
5959

6060
```bash
61-
./validation-services-parent/xroad-validation-service/target/xroad-validation-service-3.5.0.jar
61+
java -jar validation-services-parent/xroad-validation-service/target/xroad-validation-service-X.X.X-exec.jar
6262
```
6363

6464
The SiVa webapp by default runs on port **8080** and XRoad validation service starts up on port **8081**.
6565
Easiest way to test out validation is run SiVa demo application.
6666

67-
**Start SiVa Demo Application**
67+
**Start SiVa Demo Application. NB! X.X.X denotes the version you are running.**
6868

6969
```bash
70-
./siva-parent/siva-sample-application/target/siva-sample-application-3.5.0.jar
70+
java -jar siva-parent/siva-sample-application/target/siva-sample-application-X.X.X.jar
7171
```
7272

7373
Now point Your browser to URL: <http://localhost:9000>
@@ -85,10 +85,10 @@ To build the WAR file use helper script with all the correct Maven parameters.
8585
./war-build.sh
8686
```
8787

88-
Copy built WAR file into Tomcat `webapps` directory and start the servlet container.
88+
Copy built WAR file into Tomcat `webapps` directory and start the servlet container. NB! X.X.X denotes the version you are running.
8989

9090
```bash
91-
cp siva-parent/siva-webapp/target/siva-webapp-3.5.0.war apache-tomcat-7.0.70/webapps
91+
cp siva-parent/siva-webapp/target/siva-webapp-X.X.X.war apache-tomcat-7.0.70/webapps
9292
./apache-tomcat-7.0.77/bin/catalina.sh run
9393
```
9494

@@ -132,10 +132,10 @@ tests, SiVa Web application has to be started before the tests are executed.
132132
> **Note**: PDF load test files contain test certificates. In order for PDF load tests to succeed
133133
> SiVa application should be started with test certificates preloaded.
134134
135-
To load trusted test certificates in addition to TSL, "test" spring profile should be activated at startup, for example:
135+
To load trusted test certificates in addition to TSL, "test" spring profile should be activated at startup (NB! X.X.X denotes the version you are running), for example:
136136

137137
```bash
138-
java -Dspring.profiles.active=test -jar siva-webapp-3.5.0.jar
138+
java -Dspring.profiles.active=test -jar siva-parent/siva-webapp/target/siva-webapp-X.X.X-exec.jar
139139
```
140140

141141
To run load tests after unit tests in non GUI mode:

pom.xml

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<groupId>ee.openid.siva</groupId>
2424
<artifactId>siva</artifactId>
25-
<version>3.5.0</version>
25+
<version>3.5.1</version>
2626
<packaging>pom</packaging>
2727
<name>SiVa Digitally signed documents validation service</name>
2828
<url>https://github.com/open-eid/SiVa</url>
@@ -111,19 +111,14 @@
111111
<dss.version>5.7.d4j.2</dss.version>
112112
<commons.codec.version>1.15</commons.codec.version>
113113
<commons.collections.version>4.4</commons.collections.version>
114-
<commons.io.version>2.9.0</commons.io.version>
115-
<jackson.version>2.12.3</jackson.version>
116-
<junit.jupiter.version>5.7.2</junit.jupiter.version>
117-
<junit.platform.version>1.7.2</junit.platform.version>
118-
<junit.version>4.13.2</junit.version>
119-
<json.version>20210307</json.version>
120-
<logback.version>1.2.3</logback.version>
121-
<lombok.version>1.18.20</lombok.version>
122-
<mockito.version>3.11.0</mockito.version>
123-
<powermock.version>2.0.9</powermock.version>
124-
<snakeyaml.version>1.29</snakeyaml.version>
125-
<spring.boot.version>2.3.12.RELEASE</spring.boot.version>
126-
<xmlsec.version>2.1.6</xmlsec.version>
114+
<commons.io.version>2.11.0</commons.io.version>
115+
<jackson.version>2.13.1</jackson.version>
116+
<json.version>20211205</json.version>
117+
<logback.version>1.2.10</logback.version>
118+
<lombok.version>1.18.22</lombok.version>
119+
<snakeyaml.version>1.30</snakeyaml.version>
120+
<spring.boot.version>2.6.2</spring.boot.version>
121+
<xmlsec.version>2.1.7</xmlsec.version>
127122

128123
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
129124
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
@@ -151,7 +146,7 @@
151146
</plugin>
152147
<plugin>
153148
<artifactId>maven-pmd-plugin</artifactId>
154-
<version>3.14.0</version>
149+
<version>3.15.0</version>
155150
</plugin>
156151
</plugins>
157152
</reporting>
@@ -161,7 +156,7 @@
161156
<plugin>
162157
<groupId>org.apache.maven.plugins</groupId>
163158
<artifactId>maven-compiler-plugin</artifactId>
164-
<version>3.8.1</version>
159+
<version>3.9.0</version>
165160
<configuration>
166161
<forceJavacCompilerUse>true</forceJavacCompilerUse>
167162
<source>${language.level}</source>
@@ -205,7 +200,7 @@
205200
<plugin>
206201
<groupId>org.apache.maven.plugins</groupId>
207202
<artifactId>maven-release-plugin</artifactId>
208-
<version>2.5.3</version>
203+
<version>3.0.0-M5</version>
209204
</plugin>
210205
<plugin>
211206
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)