Skip to content

Commit

Permalink
v1_4_2: Set version names to 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bucky-boy committed Mar 5, 2018
1 parent 7cad4b8 commit 3493df0
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ If you are using Maven, you need to add the following dependency:
<dependency>
<groupId>com.yoti</groupId>
<artifactId>yoti-sdk-impl</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</dependency>
```

If you are using Gradle, here is the dependency to add:

`compile group: 'com.yoti', name: 'yoti-sdk-impl', version: '1.3'`
`compile group: 'com.yoti', name: 'yoti-sdk-impl', version: '1.4.2'`

You will find all classes packaged under `com.yoti.api`

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.yoti</groupId>
<artifactId>yoti-sdk</artifactId>
<packaging>pom</packaging>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
<name>Yoti SDK</name>
<description>Java SDK for simple integration with the Yoti platform</description>
<url>https://github.com/getyoti/yoti-java-sdk</url>
Expand Down
2 changes: 1 addition & 1 deletion yoti-sdk-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.yoti</groupId>
<artifactId>yoti-sdk-api</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
<name>Yoti SDK API</name>
<description>Java SDK for simple integration with the Yoti platform</description>
<url>https://github.com/getyoti/yoti-java-sdk</url>
Expand Down
4 changes: 2 additions & 2 deletions yoti-sdk-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.yoti</groupId>
<artifactId>yoti-sdk-impl</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
<name>Yoti SDK implementation package</name>
<description>Java SDK for simple integration with the Yoti platform</description>
<url>https://github.com/getyoti/yoti-java-sdk</url>
Expand All @@ -28,7 +28,7 @@
</developers>

<properties>
<yoti.sdk.version>1.4.2-SNAPSHOT</yoti.sdk.version>
<yoti.sdk.version>1.4.2</yoti.sdk.version>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<owasp.dependency.check.cvss.limit>4</owasp.dependency.check.cvss.limit>
Expand Down
4 changes: 2 additions & 2 deletions yoti-sdk-spring-boot-auto-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ If you are using Maven, you need to add the following dependencies:
<dependency>
<groupId>com.yoti</groupId>
<artifactId>yoti-sdk-spring-boot-auto-config</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</dependency>
```


If you are using Gradle, here is the dependency to add:

```
compile group: 'com.yoti', name: 'yoti-sdk-spring-boot-auto-config', version: '1.4.1'
compile group: 'com.yoti', name: 'yoti-sdk-spring-boot-auto-config', version: '1.4.2'
```


Expand Down
4 changes: 2 additions & 2 deletions yoti-sdk-spring-boot-auto-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<yoti.sdk.version>1.4.2-SNAPSHOT</yoti.sdk.version>
<yoti.sdk.version>1.4.2</yoti.sdk.version>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<owasp.dependency.check.cvss.limit>4</owasp.dependency.check.cvss.limit>
Expand All @@ -15,7 +15,7 @@

<groupId>com.yoti</groupId>
<artifactId>yoti-sdk-spring-boot-auto-config</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
<name>Yoti Spring Boot Integration</name>
<description>Library to integrate the Java Yoti SDK with Spring Boot Applications</description>
<url>https://github.com/getyoti/yoti-java-sdk</url>
Expand Down
2 changes: 1 addition & 1 deletion yoti-sdk-spring-boot-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Before you start, you'll need to create an Application in [Dashboard](https://ww
<dependency>
<groupId>com.yoti</groupId>
<artifactId>yoti-sdk-impl</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions yoti-sdk-spring-boot-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.yoti</groupId>
<artifactId>yoti-sdk-spring-boot-example</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
<name>Yoti Spring Boot Example</name>
<parent>
<groupId>org.springframework.boot</groupId>
Expand All @@ -13,7 +13,7 @@
<relativePath /> <!-- lookup parent from repository -->
</parent>
<properties>
<yoti.sdk.version>1.4.2-SNAPSHOT</yoti.sdk.version>
<yoti.sdk.version>1.4.2</yoti.sdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions yoti-sdk-spring-security/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ If you are using Maven, you need to add the following dependencies:
<dependency>
<groupId>com.yoti</groupId>
<artifactId>yoti-sdk-spring-security</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</dependency>
```

If you are using Gradle, here is the dependency to add:

```
compile group: 'com.yoti', name: 'yoti-sdk-spring-security', version: '1.0'
compile group: 'com.yoti', name: 'yoti-sdk-spring-security', version: '1.4.2'
```

### Provide a `YotiClient` instance
Expand Down
4 changes: 2 additions & 2 deletions yoti-sdk-spring-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<yoti.sdk.version>1.4.2-SNAPSHOT</yoti.sdk.version>
<yoti.sdk.version>1.4.2</yoti.sdk.version>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<owasp.dependency.check.cvss.limit>4</owasp.dependency.check.cvss.limit>
Expand All @@ -15,7 +15,7 @@

<groupId>com.yoti</groupId>
<artifactId>yoti-sdk-spring-security</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
<name>Spring Security Integration For The Yoti SDK</name>
<description>Library to integrate the Java Yoti SDK with Spring Security</description>
<url>https://github.com/getyoti/yoti-java-sdk</url>
Expand Down

0 comments on commit 3493df0

Please sign in to comment.