File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed
io/github/scordio/jimfs/junit/jupiter Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 95
95
<groupId >org.apache.maven.plugins</groupId >
96
96
<artifactId >maven-compiler-plugin</artifactId >
97
97
<version >3.14.0</version >
98
+ <configuration >
99
+ <compilerArgs >
100
+ <arg >-Xlint:all,-options</arg >
101
+ </compilerArgs >
102
+ <failOnWarning >true</failOnWarning >
103
+ </configuration >
98
104
</plugin >
99
105
<plugin >
100
106
<groupId >org.apache.maven.plugins</groupId >
Original file line number Diff line number Diff line change 38
38
@ Retention (RetentionPolicy .RUNTIME )
39
39
@ Documented
40
40
@ TempDir (factory = JimfsTempDirFactory .class )
41
+ @ SuppressWarnings ("exports" )
41
42
public @interface JimfsTempDir {
42
43
43
44
/**
Original file line number Diff line number Diff line change 55
55
* @see Jimfs#newFileSystem(com.google.common.jimfs.Configuration)
56
56
* @see com.google.common.jimfs.Configuration#forCurrentPlatform()
57
57
*/
58
+ @ SuppressWarnings ("exports" )
58
59
public final class JimfsTempDirFactory implements TempDirFactory {
59
60
60
61
private static final String DEFAULT_PREFIX = "junit-" ;
Original file line number Diff line number Diff line change 18
18
* JUnit Jupiter {@link org.junit.jupiter.api.io.TempDir} extension based on {@link
19
19
* com.google.common.jimfs.Jimfs}.
20
20
*/
21
- @ SuppressWarnings ("requires-transitive-automatic" )
21
+ @ SuppressWarnings ({ "requires-automatic" , "requires- transitive-automatic"} )
22
22
module io .github .scordio .jimfs .junit .jupiter {
23
23
requires transitive com .google .common .jimfs ;
24
24
requires org .junit .jupiter .api ;
You can’t perform that action at this time.
0 commit comments