EasyDokkaPlugin alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view EasyDokkaPlugin alternatives based on common mentions on social networks and blogs.
-
kotlin-android-template
Android + Kotlin + Github Actions + ktlint + Detekt + Gradle Kotlin DSL + buildSrc = ❤️ -
jtransc
Bytecode to source converting Java & Kotlin code into JavaScript, C++, D, C#, PHP, AS3, Dart and Haxe and run it everywhere. Also use JVM code in your favourite language as a library. -
CrunchyCalendar
A beautiful material calendar with endless scroll, range selection and a lot more! -
MpApt
(Deprecated) :wrench: Kotlin Native/JS/JVM Annotation Processor library for Kotlin compiler plugins -
KtsRunner
Library for executing .kts files from regular Kotlin code -
BlurTutorial
Library for creating blur effects under Android UI elements -
Ostara
Ostara is a desktop application that provides various features to monitor and interact with Spring Boot Applications via Actuator. -
LiveStream-Kt (Android) 📱
LiveStream is a simple class which makes communication easy among different modules of your application. -
ktfmt-gradle
A Gradle plugin to apply ktfmt to your builds, and reformat you Kotlin source code like a glimpse 🧹🐘 -
Kotlin Telegram Bot
Telegram Bot API wrapper with handy Kotlin DSL. -
detekt-hint
Detection of design principle violations in Kotlin as a plugin to detekt. -
ARFaceDetection
AR-based library for Android which is capable of detecting faces and overlaying images above the user’s head -
Kotlin Bootstrap
This set of libraries is designed to help developers accomplish various tasks easier and faster -
ColdStorage
Lightweight data loading and caching library for android -
Credit Card Scanner
Android Credit Card Scanner using CameraX and ML Kit -
GradleMavenPush
Helper to upload Gradle Android Artifacts, Gradle Java Artifacts and Gradle Kotlin Artifacts to Maven repositories (JCenter, Maven Central, Corporate staging/snapshot servers and local Maven repositories). -
KotlinW
A small wrapper for the Kotlin compiler that can be used to execute .kts scripts -
AndroidOtpView (With gradient color in lines)
Android Otp View with gradient in kotlin -
buildSrcVersions
Better Gradle dependencies management inside the IDE. Search for available updates.
Appwrite - The Open Source Firebase alternative introduces iOS support
Do you think we are missing an alternative of EasyDokkaPlugin or a related project?
README
EasyDokkaPlugin [
](#) 
Gradle Script plugin to generate documentation by Dokka documentation engine in Javadoc or other formats for Java, Kotlin, Android and non-Android projects. It's very easy, you don't need to add to dependencies
section additional classpath
or think about compatibility issues, you don't need additional repositories also.
Contents
Usage
1. Have a working Gradle build
It is up to you.
2. Call the Script
Add the following at the end of build.gradle
of each sub-module that you wish to generate documentation:
apply from: 'https://raw.github.com/Vorlonsoft/EasyDokkaPlugin/master/dokka.gradle'
3. Generate documentation
You can now generate documentation by Dokka documentation engine in Javadoc or other formats:
$ gradle dokkaJavadocsJar
4. Get documentation
Get generated documentation from ${buildDir}
directory.
Optional properties
Create project root gradle.properties
. You may already have this file, in which case just edit the original. This file should contain the properties values which are common to all of your sub-projects (if you have any). The values in the sub-project gradle.properties
file are specific to the sub-project (and override those in the root gradle.properties
). For instance, here's AndroidRate's:
DOKKA_FATJAR_VERSION = 0.9.17
DOKKA_OUTPUT_FORMAT = javadoc
There are optional properties which can be set:
Dokka fatjar version
DOKKA_FATJAR_VERSION (default is "0.9.17")
${latestVersion} is [](#)
Dokka output format
DOKKA_OUTPUT_FORMAT (default is "javadoc")
Options:
html
- minimalistic html format used by defaultjavadoc
- Dokka mimic to javadochtml-as-java
- ashtml
but using java syntaxmarkdown
- Markdown structured ashtml
gfm
- GitHub flavored markdownjekyll
- Jekyll compatible markdown
kotlin-website
- internal format used for documentation on kotlinlang.org
Groovydoc documentation
See EasyDokkaPlugin documentation
Already in use in following libraries
Our other plugins
GradleMavenPush - helper to upload Gradle Android Artifacts, Gradle Java Artifacts and Gradle Kotlin Artifacts to Maven repositories (JCenter, Maven Central, Corporate staging/snapshot servers and local Maven repositories).
Contribute
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
License
Copyright 2018 Vorlonsoft LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the EasyDokkaPlugin README section above
are relevant to that project's source code only.