File tree Expand file tree Collapse file tree 5 files changed +7
-13
lines changed
tooling/metamodel-generator
src/test/java/org/hibernate/jpamodelgen/test/util Expand file tree Collapse file tree 5 files changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ dependencies {
8
8
compile project( ' :hibernate-core' )
9
9
compile( libraries. hikaricp )
10
10
testCompile project( ' :hibernate-testing' )
11
- testRuntime libraries. slf4j_log4j
12
11
}
13
12
14
13
mavenPom {
Original file line number Diff line number Diff line change 51
51
logging_annotations : ' org.jboss.logging:jboss-logging-annotations:2.0.0.Final' ,
52
52
logging_processor : ' org.jboss.logging:jboss-logging-processor:2.0.0.Final' ,
53
53
54
- slf4j_api : " org.slf4j:slf4j-api:1.7.5" ,
55
- slf4j_log4j : " org.slf4j:slf4j-log4j12:1.7.5" ,
56
-
57
54
// jaxb task
58
55
jaxb : ' com.sun.xml.bind:jaxb-xjc:2.2.5' ,
59
56
jaxb2_basics : ' org.jvnet.jaxb2_commons:jaxb2-basics:0.6.3' ,
Original file line number Diff line number Diff line change @@ -10,9 +10,7 @@ apply plugin: 'org.hibernate.build.gradle.xjc'
10
10
dependencies {
11
11
testCompile libraries. junit
12
12
testCompile libraries. jpa
13
- testCompile project( ' :hibernate-core' )
14
- testCompile libraries. slf4j_api
15
- testCompile libraries. slf4j_log4j
13
+ testCompile project( ' :hibernate-core' )
16
14
}
17
15
18
16
mavenPom {
Original file line number Diff line number Diff line change 20
20
import javax .tools .ToolProvider ;
21
21
22
22
import org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor ;
23
+
23
24
import org .junit .runners .model .Statement ;
24
- import org . slf4j . Logger ;
25
- import org .slf4j . LoggerFactory ;
25
+
26
+ import org .jboss . logging . Logger ;
26
27
27
28
import static org .junit .Assert .fail ;
28
29
35
36
* @author Hardy Ferentschik
36
37
*/
37
38
public class CompilationStatement extends Statement {
38
- private static final Logger log = LoggerFactory .getLogger ( CompilationStatement .class );
39
+ private static final Logger log = Logger .getLogger ( CompilationStatement .class );
39
40
private static final String PACKAGE_SEPARATOR = "." ;
40
41
private static final String ANNOTATION_PROCESSOR_OPTION_PREFIX = "-A" ;
41
42
private static final String SOURCE_BASE_DIR_PROPERTY = "sourceBaseDir" ;
Original file line number Diff line number Diff line change 20
20
import java .util .List ;
21
21
import javax .tools .Diagnostic ;
22
22
23
- import org .slf4j .Logger ;
24
- import org .slf4j .LoggerFactory ;
23
+ import org .jboss .logging .Logger ;
25
24
26
25
import static org .junit .Assert .assertEquals ;
27
26
import static org .junit .Assert .assertFalse ;
33
32
* @author Hardy Ferentschik
34
33
*/
35
34
public class TestUtil {
36
- private static final Logger log = LoggerFactory .getLogger ( TestUtil .class );
35
+ private static final Logger log = Logger .getLogger ( TestUtil .class );
37
36
private static final String PATH_SEPARATOR = File .separator ;
38
37
public static final String RESOURCE_SEPARATOR = "/" ;
39
38
private static final String PACKAGE_SEPARATOR = "." ;
You can’t perform that action at this time.
0 commit comments