aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/maven/projects/biojava
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2020-09-16 09:29:25 +0200
committerKamil Doległo <9080183+kamildoleglo@users.noreply.github.com>2020-11-13 19:46:36 +0100
commit1a552c1f64fc15a94c298e50a3dd614f3794c0e3 (patch)
tree5aab050b712775ef98da5041e673100c75f9ee56 /integration-tests/maven/projects/biojava
parente03aed7331756eaef766c7306bd033c84f7fd815 (diff)
downloaddokka-1a552c1f64fc15a94c298e50a3dd614f3794c0e3.tar.gz
dokka-1a552c1f64fc15a94c298e50a3dd614f3794c0e3.tar.bz2
dokka-1a552c1f64fc15a94c298e50a3dd614f3794c0e3.zip
Add integration tests for Kotlin projects
Diffstat (limited to 'integration-tests/maven/projects/biojava')
m---------integration-tests/maven/projects/biojava/biojava0
-rw-r--r--integration-tests/maven/projects/biojava/biojava.diff42
2 files changed, 42 insertions, 0 deletions
diff --git a/integration-tests/maven/projects/biojava/biojava b/integration-tests/maven/projects/biojava/biojava
new file mode 160000
+Subproject 633021b1cf6c1aafd45df2d94dc2ad6eadad398
diff --git a/integration-tests/maven/projects/biojava/biojava.diff b/integration-tests/maven/projects/biojava/biojava.diff
new file mode 100644
index 00000000..84fbe50f
--- /dev/null
+++ b/integration-tests/maven/projects/biojava/biojava.diff
@@ -0,0 +1,42 @@
+diff --git a/biojava-core/pom.xml b/biojava-core/pom.xml
+index 6cc9c6c9a..ef4f28225 100644
+--- a/biojava-core/pom.xml
++++ b/biojava-core/pom.xml
+@@ -22,9 +22,36 @@
+ </license>
+ </licenses>
+
++ <pluginRepositories>
++ <pluginRepository>
++ <id>kotlin-dev</id>
++ <url>https://dl.bintray.com/kotlin/kotlin-dev</url>
++ </pluginRepository>
++ <pluginRepository>
++ <id>kotlin-eap</id>
++ <url>https://dl.bintray.com/kotlin/kotlin-eap</url>
++ </pluginRepository>
++ <pluginRepository>
++ <id>jcenter</id>
++ <url>https://jcenter.bintray.com/</url>
++ </pluginRepository>
++ </pluginRepositories>
++
+ <build>
+ <plugins>
+-
++ <plugin>
++ <groupId>org.jetbrains.dokka</groupId>
++ <artifactId>dokka-maven-plugin</artifactId>
++ <version>${dokka_version}</version>
++ <executions>
++ <execution>
++ <phase>pre-site</phase>
++ <goals>
++ <goal>javadoc</goal>
++ </goals>
++ </execution>
++ </executions>
++ </plugin>
+ <!-- Excluding demo package is required for avoiding namespace clashes (demo package is in all modules) for signing the jar. See issue #387 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>