This repository has been archived by the owner on Dec 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
doomsdayrs
committed
Mar 20, 2020
1 parent
889c181
commit fae410f
Showing
11 changed files
with
54 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import org.gradle.jvm.tasks.Jar | ||
|
||
group = "app.shosetsu.lib" | ||
version = "1.0.0" | ||
description = "Kotlin library for shosetsu" | ||
|
||
plugins { | ||
kotlin("jvm") version "1.3.61" | ||
id("org.jetbrains.dokka") version "0.10.0" | ||
} | ||
|
||
tasks.dokka { | ||
outputFormat = "html" | ||
outputDirectory = "$buildDir/javadoc" | ||
} | ||
|
||
val dokkaJar by tasks.creating(Jar::class) { | ||
group = JavaBasePlugin.DOCUMENTATION_GROUP | ||
description = "Assembles Kotlin docs with Dokka" | ||
classifier = "javadoc" | ||
} | ||
|
||
repositories { | ||
jcenter() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation(kotlin("stdlib")) | ||
implementation("org.jsoup:jsoup:1.12.1") | ||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61") | ||
implementation("org.luaj:luaj-jse:3.0.1") | ||
implementation("org.json:json:20190722") | ||
implementation( "com.squareup.okhttp3:okhttp:4.2.1") | ||
testImplementation("junit:junit:4.12") | ||
// implementation("org.jetbrains.kolin:kotlin-test:v1.3.61") | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rootProject.name = "shosetsu-kotlin-lib" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters