Skip to content

Commit

Permalink
Merge pull request #14 from bcgov/version0.1.3
Browse files Browse the repository at this point in the history
updating to 1.3.0
  • Loading branch information
Adam Kroon authored Aug 17, 2020
2 parents 8daf0a4 + 16f081d commit 7e777e4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>ca.bc.gov.open</groupId>
<artifactId>spring-starters</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>0.1.3</version>
<modules>

</modules>
Expand Down
4 changes: 2 additions & 2 deletions src/spring-bceid-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ca.bc.gov.open</groupId>
<artifactId>spring-bceid-starter</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>0.1.3</version>

<properties>
<java.version>1.8</java.version>
Expand Down Expand Up @@ -86,7 +86,7 @@
<dependency>
<groupId>ca.bc.gov.open</groupId>
<artifactId>spring-starters-bom</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>0.1.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import ca.bceid.webservices.client.v9.BCeIDServiceSoap;
import org.apache.commons.lang3.StringUtils;
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
Expand Down Expand Up @@ -48,6 +49,7 @@ public BCeIDServiceSoap bCeIDServiceSoap() {
}

@Bean
@ConditionalOnMissingBean(BCeIDAccountService.class)
public BCeIDAccountService bCeIDUserService(BCeIDServiceSoap bCeIDServiceSoap, AccountDetailRequestMapper accountDetailRequestMapper, IndividualIdentityMapper individualIdentityMapper) {
return new BCeIDAccountServiceImpl(bCeIDServiceSoap, bCeIdProperties, accountDetailRequestMapper, individualIdentityMapper);
}
Expand Down
4 changes: 2 additions & 2 deletions src/spring-sftp-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>ca.bc.gov.open</groupId>
<artifactId>spring-sftp-starter</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>0.1.3</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -70,7 +70,7 @@
<dependency>
<groupId>ca.bc.gov.open</groupId>
<artifactId>spring-starters-bom</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>0.1.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/spring-starters-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>ca.bc.gov.open</groupId>
<artifactId>spring-starters-bom</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>0.1.3</version>

<properties>
<org.apache.cxf.version>3.3.7</org.apache.cxf.version>
Expand Down

0 comments on commit 7e777e4

Please sign in to comment.