Skip to content

Commit

Permalink
Fix source/test path definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuchss committed Aug 20, 2024
1 parent 782dad1 commit 6cbde77
Showing 1 changed file with 3 additions and 33 deletions.
36 changes: 3 additions & 33 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -224,38 +224,6 @@
<artifactId>maven-source-plugin</artifactId>
</plugin>
<!-- Kotlin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<goals>
<goal>add-source</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<sources>
<source>src/main/java</source>
<source>src/main/kotlin</source>
</sources>
</configuration>
</execution>
<execution>
<id>add-test-source</id>
<goals>
<goal>add-test-source</goal>
</goals>
<phase>generate-test-sources</phase>
<configuration>
<sources>
<source>src/test/java</source>
<source>src/test/kotlin</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
Expand All @@ -271,7 +239,7 @@
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>1.9.10</version>
<version>1.9.20</version>
<configuration>
<failOnWarning>false</failOnWarning>
<reportUndocumented>false</reportUndocumented>
Expand Down Expand Up @@ -333,6 +301,8 @@
</configuration>
</plugin>
</plugins>
<sourceDirectory>src/main/kotlin</sourceDirectory>
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
</build>

<profiles>
Expand Down

0 comments on commit 6cbde77

Please sign in to comment.