aboutsummaryrefslogtreecommitdiff
path: root/plugins/mathjax/build.gradle
diff options
context:
space:
mode:
authorPaweł Marks <pmarks@virtuslab.com>2019-11-20 08:09:59 +0100
committerBłażej Kardyś <bkardys@virtuslab.com>2019-11-25 16:24:16 +0100
commit87c65d1bf22dc0dbc6da8d007fafc73382432812 (patch)
tree6191094093bd0162c7adf3b5ca16474c2448f74d /plugins/mathjax/build.gradle
parent8a057a4611684a6a4616e136d480c005997070cd (diff)
downloaddokka-87c65d1bf22dc0dbc6da8d007fafc73382432812.tar.gz
dokka-87c65d1bf22dc0dbc6da8d007fafc73382432812.tar.bz2
dokka-87c65d1bf22dc0dbc6da8d007fafc73382432812.zip
Mathjax plugin implemented
Diffstat (limited to 'plugins/mathjax/build.gradle')
-rw-r--r--plugins/mathjax/build.gradle11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/mathjax/build.gradle b/plugins/mathjax/build.gradle
index a4a59c50..6578ff45 100644
--- a/plugins/mathjax/build.gradle
+++ b/plugins/mathjax/build.gradle
@@ -1,6 +1,17 @@
import javax.tools.ToolProvider
+apply plugin: 'maven-publish'
dependencies {
compileOnly project(':core')
+}
+
+publishing {
+ publications {
+ dokkaCore(MavenPublication) { publication ->
+ artifactId = 'mathjax-plugin'
+
+ from components.java
+ }
+ }
} \ No newline at end of file