Skip to content

Commit

Permalink
Updating versions and fixing broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Baxter committed Jun 29, 2018
1 parent 97bcf4d commit b926093
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-build</artifactId>
<version>1.3.5.BUILD-SNAPSHOT</version>
<version>1.3.10.BUILD-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<scm>
Expand All @@ -21,8 +21,8 @@
<tag>HEAD</tag>
</scm>
<properties>
<spring-cloud-commons.version>1.3.1.BUILD-SNAPSHOT</spring-cloud-commons.version>
<spring-cloud-netflix.version>1.4.2.BUILD-SNAPSHOT</spring-cloud-netflix.version>
<spring-cloud-commons.version>1.3.3.BUILD-SNAPSHOT</spring-cloud-commons.version>
<spring-cloud-netflix.version>1.4.5.BUILD-SNAPSHOT</spring-cloud-netflix.version>
<bintray.package>security</bintray.package>
</properties>
<modules>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-security-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spring-cloud-dependencies-parent</artifactId>
<groupId>org.springframework.cloud</groupId>
<version>1.3.5.BUILD-SNAPSHOT</version>
<version>1.3.10.BUILD-SNAPSHOT</version>
<relativePath/>
</parent>
<artifactId>spring-cloud-security-dependencies</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
public class ResourceServerTokenRelayTests {

protected static final String TOKEN_VALID_UNTIL_2085 = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjM2NDA2ODU4ODIsInVzZXJfbmFtZSI6InJlYWRlciIsImF1dGhvcml0aWVzIjpbIlJPTEVfUkVBREVSIl0sImp0aSI6ImRkOTAzZGM2LTI0NDctNDViMi04MDZjLTIzZjU3ODVhNGQ4MCIsImNsaWVudF9pZCI6IndlYi1hcHAiLCJzY29wZSI6WyJyZWFkIl19.6hoNtxmN1_o5Ki0D0ae4amSOTRmit3pmaqv-z1-Qk4Y";
protected static final String AUTH_HEADER_TO_BE_RELAYED = "bearer " + TOKEN_VALID_UNTIL_2085;
protected static final String AUTH_HEADER_TO_BE_RELAYED = "Bearer " + TOKEN_VALID_UNTIL_2085;
protected static final String TEST_RESPONSE = "[\"test response\"]";

@Autowired
Expand Down

0 comments on commit b926093

Please sign in to comment.