Skip to content

Commit ff26aea

Browse files
committed
docs: ✏️ Fixes dokka javadoc generation
1 parent c0db58d commit ff26aea

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

core/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@
5454
</execution>
5555
</executions>
5656
</plugin>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-site-plugin</artifactId>
60+
<configuration>
61+
<skip>true</skip>
62+
</configuration>
63+
</plugin>
5764
</plugins>
5865
</build>
5966
</project>

examples/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,14 @@
7979
</archive>
8080
</configuration>
8181
</plugin>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-site-plugin</artifactId>
85+
<configuration>
86+
<skip>true</skip>
87+
</configuration>
88+
</plugin>
89+
8290
</plugins>
8391
</build>
8492

kotlin-spark-api/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>org.jetbrains.kotlin.spark</groupId>
3838
<artifactId>core</artifactId>
39-
<version>${parent.version}</version>
39+
<version>${project.parent.version}</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.apache.spark</groupId>
@@ -129,7 +129,6 @@
129129
<configuration>
130130
<jdkVersion>8</jdkVersion>
131131
</configuration>
132-
<dependencies></dependencies>
133132
<executions>
134133
<execution>
135134
<goals>

kotlin-spark-api/src/test/kotlin/org/jetbrains/spark/api/ApiTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ class ApiTest : ShouldSpec({
7979
.collectAsList()
8080
expect(result).asExpect().contains.inAnyOrder.only.values(5, 6, 7, 8, 7, 8, 9)
8181
}
82+
8283
}
8384
}
8485
})

kotlin-spark-api/src/test/kotlin/org/jetbrains/spark/api/TypeInferenceTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import kotlin.reflect.typeOf
3333

3434

3535
@OptIn(ExperimentalStdlibApi::class)
36-
class TypeInferenceTest : ShouldSpec({
36+
class TypeInferenceTest : ShouldSpec({
3737
context("org.jetbrains.spark.api.org.jetbrains.spark.api.schema") {
3838
data class Test2<T>(val vala2: T, val para2: Pair<T, String>)
3939
data class Test<T>(val vala: T, val tripl1: Triple<T, Test2<Long>, T>)

0 commit comments

Comments
 (0)