Skip to content

Commit 7e777e4

Browse files
author
Adam Kroon
authored
Merge pull request #14 from bcgov/version0.1.3
updating to 1.3.0
2 parents 8daf0a4 + 16f081d commit 7e777e4

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

Diff for: src/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>ca.bc.gov.open</groupId>
77
<artifactId>spring-starters</artifactId>
8-
<version>0.1.3-SNAPSHOT</version>
8+
<version>0.1.3</version>
99
<modules>
1010

1111
</modules>

Diff for: src/spring-bceid-starter/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>ca.bc.gov.open</groupId>
88
<artifactId>spring-bceid-starter</artifactId>
9-
<version>0.1.3-SNAPSHOT</version>
9+
<version>0.1.3</version>
1010

1111
<properties>
1212
<java.version>1.8</java.version>
@@ -86,7 +86,7 @@
8686
<dependency>
8787
<groupId>ca.bc.gov.open</groupId>
8888
<artifactId>spring-starters-bom</artifactId>
89-
<version>0.1.3-SNAPSHOT</version>
89+
<version>0.1.3</version>
9090
<type>pom</type>
9191
<scope>import</scope>
9292
</dependency>

Diff for: src/spring-bceid-starter/src/main/java/ca/bc/gov/open/bceid/starter/AutoConfiguration.java

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import ca.bceid.webservices.client.v9.BCeIDServiceSoap;
1010
import org.apache.commons.lang3.StringUtils;
1111
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
12+
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
1213
import org.springframework.boot.context.properties.EnableConfigurationProperties;
1314
import org.springframework.context.annotation.Bean;
1415
import org.springframework.context.annotation.Configuration;
@@ -48,6 +49,7 @@ public BCeIDServiceSoap bCeIDServiceSoap() {
4849
}
4950

5051
@Bean
52+
@ConditionalOnMissingBean(BCeIDAccountService.class)
5153
public BCeIDAccountService bCeIDUserService(BCeIDServiceSoap bCeIDServiceSoap, AccountDetailRequestMapper accountDetailRequestMapper, IndividualIdentityMapper individualIdentityMapper) {
5254
return new BCeIDAccountServiceImpl(bCeIDServiceSoap, bCeIdProperties, accountDetailRequestMapper, individualIdentityMapper);
5355
}

Diff for: src/spring-sftp-starter/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>ca.bc.gov.open</groupId>
99
<artifactId>spring-sftp-starter</artifactId>
10-
<version>0.1.3-SNAPSHOT</version>
10+
<version>0.1.3</version>
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -70,7 +70,7 @@
7070
<dependency>
7171
<groupId>ca.bc.gov.open</groupId>
7272
<artifactId>spring-starters-bom</artifactId>
73-
<version>0.1.3-SNAPSHOT</version>
73+
<version>0.1.3</version>
7474
<type>pom</type>
7575
<scope>import</scope>
7676
</dependency>

Diff for: src/spring-starters-bom/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>ca.bc.gov.open</groupId>
99
<artifactId>spring-starters-bom</artifactId>
10-
<version>0.1.3-SNAPSHOT</version>
10+
<version>0.1.3</version>
1111

1212
<properties>
1313
<org.apache.cxf.version>3.3.7</org.apache.cxf.version>

0 commit comments

Comments
 (0)