File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -86,8 +86,8 @@ To compile source code, specify the source directories in the `<build>` tag:
8686
8787``` xml
8888<build >
89- <sourceDirectory >${project.basedir}/ src/main/kotlin</sourceDirectory >
90- <testSourceDirectory >${project.basedir}/ src/test/kotlin</testSourceDirectory >
89+ <sourceDirectory >src/main/kotlin</sourceDirectory >
90+ <testSourceDirectory >src/test/kotlin</testSourceDirectory >
9191</build >
9292```
9393
@@ -157,8 +157,8 @@ making sure that the `kotlin` plugin comes before the `maven-compiler-plugin` in
157157 </goals >
158158 <configuration >
159159 <sourceDirs >
160- <sourceDir >${project.basedir}/ src/main/kotlin</sourceDir >
161- <sourceDir >${project.basedir}/ src/main/java</sourceDir >
160+ <sourceDir >src/main/kotlin</sourceDir >
161+ <sourceDir >src/main/java</sourceDir >
162162 </sourceDirs >
163163 </configuration >
164164 </execution >
@@ -170,8 +170,8 @@ making sure that the `kotlin` plugin comes before the `maven-compiler-plugin` in
170170 </goals >
171171 <configuration >
172172 <sourceDirs >
173- <sourceDir >${project.basedir}/ src/test/kotlin</sourceDir >
174- <sourceDir >${project.basedir}/ src/test/java</sourceDir >
173+ <sourceDir >src/test/kotlin</sourceDir >
174+ <sourceDir >src/test/java</sourceDir >
175175 </sourceDirs >
176176 </configuration >
177177 </execution >
You can’t perform that action at this time.
0 commit comments