File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 29
29
30
30
<build >
31
31
<sourceDirectory >${project.basedir} /src/main/kotlin</sourceDirectory >
32
- <!-- testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory-- >
32
+ <testSourceDirectory >${project.basedir} /src/test/kotlin</testSourceDirectory >
33
33
34
34
<plugins >
35
+ <plugin >
36
+ <groupId >org.apache.maven.plugins</groupId >
37
+ <artifactId >maven-antrun-plugin</artifactId >
38
+ <executions >
39
+ <execution >
40
+ <id >ensure-target-classes-dir-before-kotlin-compile</id >
41
+ <phase >generate-resources</phase >
42
+ <goals >
43
+ <goal >run</goal >
44
+ </goals >
45
+ <configuration >
46
+ <tasks >
47
+ <mkdir dir =" ${basedir}/target/classes" />
48
+ </tasks >
49
+ </configuration >
50
+ </execution >
51
+ </executions >
52
+ </plugin >
35
53
<plugin >
36
54
<artifactId >kotlin-maven-plugin</artifactId >
37
55
<groupId >org.jetbrains.kotlin</groupId >
You can’t perform that action at this time.
0 commit comments