Skip to content

Commit

Permalink
Update dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wlzhn committed Apr 18, 2019
1 parent d6b7e6b commit dc736f5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to

## [Unreleased]

## [1.1.2-M3] - 2019-04-18
### Changed
- Update framework to 6.0.0-M15

## [1.1.2-M2] - 2019-04-16
### Changed
- Remove deprecated github_token entry from travis.yml
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package uk.gov.justice.services.core.aggregate;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class DodgyClass {

private static final Logger LOGGER = LoggerFactory.getLogger(DodgyClass.class);


public void dodgyMethod() {
String DODGYVARIABLE = "dodgy";
LOGGER.info("dodgy: " + DODGYVARIABLE);
System.out.println("Invoke dodgy method");
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<properties>
<cpp.repo.name>framework-domain</cpp.repo.name>
<common-bom.version>1.29.0</common-bom.version>
<framework.version>6.0.0-M12</framework.version>
<framework.version>6.0.0-M15</framework.version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit dc736f5

Please sign in to comment.