File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
src/test/java/io/avaje/validation/generator Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 85
85
86
86
<build >
87
87
<plugins >
88
-
89
88
<plugin >
90
89
<groupId >org.apache.maven.plugins</groupId >
91
90
<artifactId >maven-compiler-plugin</artifactId >
92
91
<configuration >
93
- <source >${java.version} </source >
94
- <target >${java.version} </target >
95
92
<annotationProcessorPaths >
96
93
<path >
97
94
<groupId >io.avaje</groupId >
Original file line number Diff line number Diff line change 22
22
import javax .tools .ToolProvider ;
23
23
24
24
import org .junit .jupiter .api .AfterEach ;
25
- import org .junit .jupiter .api .Disabled ;
26
25
import org .junit .jupiter .api .Test ;
27
26
28
27
class ValidatorProcessorTest {
@@ -39,10 +38,9 @@ void deleteGeneratedFiles() throws IOException {
39
38
}
40
39
}
41
40
42
- @ Disabled
43
41
@ Test
44
42
void testGeneration () throws Exception {
45
- final String source = Paths .get ("src" ).toAbsolutePath ().toString ();
43
+ final String source = Paths .get ("src/test/java/io/avaje/validation/generator/models/valid " ).toAbsolutePath ().toString ();
46
44
47
45
final JavaCompiler compiler = ToolProvider .getSystemJavaCompiler ();
48
46
final StandardJavaFileManager manager = compiler .getStandardFileManager (null , null , null );
You can’t perform that action at this time.
0 commit comments