File tree Expand file tree Collapse file tree 9 files changed +46
-7
lines changed
main/java/io/toolisticon/cute/extension/junit4
test/java/io/toolisticon/cute/extension/junit4
main/java/io/toolisticon/cute/extension/junit5
test/java/io/toolisticon/cute/extension/junit5
main/java/io/toolisticon/cute/extension/testng
test/java/io/toolisticon/cute/extension/testng Expand file tree Collapse file tree 9 files changed +46
-7
lines changed Original file line number Diff line number Diff line change 4444 <build >
4545
4646 <plugins >
47-
47+ <plugin >
48+ <artifactId >maven-compiler-plugin</artifactId >
49+ <configuration combine.self=" append" >
50+ <annotationProcessorPaths >
51+ <path >
52+ <groupId >io.toolisticon.spiap</groupId >
53+ <artifactId >spiap-processor</artifactId >
54+ <version >${spiap.version} </version >
55+ </path >
56+ <path >
57+ <groupId >io.toolisticon.spiap</groupId >
58+ <artifactId >spiap-api</artifactId >
59+ <version >${spiap.version} </version >
60+ </path >
61+ </annotationProcessorPaths >
62+ </configuration >
63+ </plugin >
4864 <plugin >
4965 <artifactId >maven-enforcer-plugin</artifactId >
5066 <executions >
Original file line number Diff line number Diff line change 1+ /**
2+ * This package contains all public classes and interfaces intentioned to be used as part of the public api.
3+ */
4+ @ io .toolisticon .spiap .api .SpiServiceLocator (io .toolisticon .cute .extension .api .AssertionSpi .class )
5+ package io .toolisticon .cute .extension .junit4 ;
Original file line number Diff line number Diff line change 1- package io .toolisticon .cute .extension .plainjava ;
1+ package io .toolisticon .cute .extension .junit4 ;
22
3- import io .toolisticon .cute .extension .api .AssertionSpi ;
4- import io .toolisticon .cute .extension .api .AssertionSpiServiceLocator ;
5- import io .toolisticon .cute .extension .junit4 .JUnit4Assertion ;
63import org .hamcrest .MatcherAssert ;
74import org .hamcrest .Matchers ;
85import org .junit .Assert ;
96import org .junit .Test ;
107
8+ import io .toolisticon .cute .extension .api .AssertionSpi ;
9+
1110/**
1211 * Unit test for {@link JUnit4Assertion}.
1312 */
Original file line number Diff line number Diff line change 4949 <artifactId >spiap-processor</artifactId >
5050 <version >${spiap.version} </version >
5151 </path >
52+ <path >
53+ <groupId >io.toolisticon.spiap</groupId >
54+ <artifactId >spiap-api</artifactId >
55+ <version >${spiap.version} </version >
56+ </path >
5257 </annotationProcessorPaths >
5358 </configuration >
5459 </plugin >
60+
5561
5662 <plugin >
5763 <artifactId >maven-enforcer-plugin</artifactId >
Original file line number Diff line number Diff line change 1+ /**
2+ * This package contains all public classes and interfaces intentioned to be used as part of the public api.
3+ */
4+ @ io .toolisticon .spiap .api .SpiServiceLocator (io .toolisticon .cute .extension .api .AssertionSpi .class )
5+ package io .toolisticon .cute .extension .junit5 ;
Original file line number Diff line number Diff line change 11package io .toolisticon .cute .extension .junit5 ;
22
33import io .toolisticon .cute .extension .api .AssertionSpi ;
4- import io .toolisticon .cute .extension .api .AssertionSpiServiceLocator ;
54import org .hamcrest .MatcherAssert ;
65import org .hamcrest .Matchers ;
76import org .junit .jupiter .api .Assertions ;
Original file line number Diff line number Diff line change 4848 <artifactId >spiap-processor</artifactId >
4949 <version >${spiap.version} </version >
5050 </path >
51+ <path >
52+ <groupId >io.toolisticon.spiap</groupId >
53+ <artifactId >spiap-api</artifactId >
54+ <version >${spiap.version} </version >
55+ </path >
5156 </annotationProcessorPaths >
5257 </configuration >
5358 </plugin >
Original file line number Diff line number Diff line change 1+ /**
2+ * This package contains all public classes and interfaces intentioned to be used as part of the public api.
3+ */
4+ @ io .toolisticon .spiap .api .SpiServiceLocator (io .toolisticon .cute .extension .api .AssertionSpi .class )
5+ package io .toolisticon .cute .extension .testng ;
Original file line number Diff line number Diff line change 11package io .toolisticon .cute .extension .testng ;
22
33import io .toolisticon .cute .extension .api .AssertionSpi ;
4- import io .toolisticon .cute .extension .api .AssertionSpiServiceLocator ;
54import org .hamcrest .MatcherAssert ;
65import org .hamcrest .Matchers ;
76import org .testng .Assert ;
You can’t perform that action at this time.
0 commit comments