Use slf4j for logging and tidy up dependencies.

This commit is contained in:
Karsten Sperling
2016-11-17 09:37:41 +13:00
parent 53680ba53b
commit 92cdd25ca9
6 changed files with 28 additions and 55 deletions
@@ -19,17 +19,14 @@
*/
package com.avaje.test.springsupport;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.util.logging.Logger;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
/**
* Unit test for Ebean Spring Module.
@@ -20,9 +20,7 @@
package com.avaje.test.springsupport;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.ManyToMany;
@@ -56,6 +54,4 @@ public class Role {
public void setUsers(Set<User> users) {
this.users = users;
}
}