Skip to content

Commit 96d931e

Browse files
author
Kelvin Wijaya
authored
Merge pull request #10 from GovTechSG/development
Development
2 parents 6fe0f7d + ec94593 commit 96d931e

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,7 @@
2525
### V1.3.0-SNAPSHOT
2626
+ Update test-suites framework to cover more use-case scenarios
2727
+ Add Utility to read from PKI Key with PEM format
28-
+ Update README documentation
28+
+ Update README documentation
29+
### V1.3.1-SNAPSHOT
30+
+ Update dependency library for jackson-databind to version 2.9.8
31+
+ Update mvn command to pull centralised unit-test cases from github repository

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ This project use Maven or Gradle as its build and management tools
4040
**Option 1:** Compile and package into JAR
4141

4242
```bash
43-
4443
mvn package
45-
4644
```
4745

4846
The compiled _jar_ file will be located in the **target** folder
@@ -65,9 +63,8 @@ mvn install
6563
<dependency>
6664
<groupId>com.api.util</groupId>
6765
<artifactId>ApiSecurity</artifactId>
68-
<version>1.3.0-SNAPSHOT</version>
66+
<version>1.3.1-SNAPSHOT</version>
6967
</dependency>
70-
7168
```
7269

7370
**Note:**
@@ -85,7 +82,13 @@ mvn install
8582
```
8683

8784
#### Maven Test
88-
To execute unit-test with Maven command
85+
Pull centralised Unit Test-cases from the following Github url: <https://github.com/GovTechSG/test-suites-apex-api-security/tree/master> with Mavem command (in project root folder)
86+
87+
```bash
88+
mvn scm:checkout -D checkoutDirectory=src/main/resources/test-suites
89+
```
90+
91+
To execute unit-test with Maven command (in project root folder)
8992

9093
```bash
9194
mvn test
@@ -133,7 +136,7 @@ repositories {
133136
mavenLocal()
134137
}
135138
dependencies {
136-
compile group: 'com.api.util', name: 'ApiSecurity', version: '1.3.0-SNAPSHOT'
139+
compile group: 'com.api.util', name: 'ApiSecurity', version: '1.3.1-SNAPSHOT'
137140
}
138141
139142
```

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'com.github.kt3k.coveralls' version '2.6.3'
55
}
66

7-
version '1.3.0-SNAPSHOT'
7+
version '1.3.1-SNAPSHOT'
88

99
tasks.withType(JavaCompile) {
1010
options.encoding = "UTF-8"
@@ -18,7 +18,7 @@ dependencies {
1818
//compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
1919
compile group: 'commons-lang', name: 'commons-lang', version: '2.4'
2020
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
21-
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.7'
21+
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.8'
2222
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
2323
compile group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.60'
2424
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.25'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.api.util</groupId>
44
<artifactId>ApiSecurity</artifactId>
5-
<version>1.3.0-SNAPSHOT</version>
5+
<version>1.3.1-SNAPSHOT</version>
66
<build>
77
<plugins>
88
<plugin>

0 commit comments

Comments
 (0)