Skip to content

Commit

Permalink
docs: ✏️ Fixes dokka javadoc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
asm0dey committed Aug 9, 2020
1 parent c0db58d commit ff26aea
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
7 changes: 7 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
8 changes: 8 additions & 0 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>

</plugins>
</build>

Expand Down
3 changes: 1 addition & 2 deletions kotlin-spark-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<dependency>
<groupId>org.jetbrains.kotlin.spark</groupId>
<artifactId>core</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
Expand Down Expand Up @@ -129,7 +129,6 @@
<configuration>
<jdkVersion>8</jdkVersion>
</configuration>
<dependencies></dependencies>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class ApiTest : ShouldSpec({
.collectAsList()
expect(result).asExpect().contains.inAnyOrder.only.values(5, 6, 7, 8, 7, 8, 9)
}

}
}
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import kotlin.reflect.typeOf


@OptIn(ExperimentalStdlibApi::class)
class TypeInferenceTest : ShouldSpec({
class TypeInferenceTest : ShouldSpec({
context("org.jetbrains.spark.api.org.jetbrains.spark.api.schema") {
data class Test2<T>(val vala2: T, val para2: Pair<T, String>)
data class Test<T>(val vala: T, val tripl1: Triple<T, Test2<Long>, T>)
Expand Down

0 comments on commit ff26aea

Please sign in to comment.