Skip to content

Commit

Permalink
renaming dir structure to kodex
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolanrensen committed Jan 2, 2025
1 parent 564f319 commit 9a2e120
Show file tree
Hide file tree
Showing 96 changed files with 28 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ hs_err_pid*
**/build/
/build/
/.idea/
/kodex-gradle-plugin/src/functionalTest/resources/dataframe/**
/kodex-gradle-plugin/src/functionalTest/resources/dataframe/
.intellijPlatform
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ repositories {
}

dependencies {
api(project(":doc-processor-common"))
api(project(":kodex-common"))

// Gradle plugin dependencies
shadow(gradleApi())
Expand Down Expand Up @@ -65,9 +65,10 @@ gradlePlugin {
// Define the plugin
val docProcessor by plugins.creating {
id = "nl.jolanrensen.docProcessor"
displayName = "KDoc/Javadoc processor Gradle Plugin"
description = "KDoc/Javadoc processor Gradle Plugin"
displayName = "/** KoDEx */: Kotlin Documentation Extensions"
description = "/** KoDEx */: Kotlin Documentation Extensions"
tags = listOf(
"kodex",
"kotlin",
"java",
"documentation",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ intellijPlatform {
}

dependencies {
api(project(":doc-processor-common"))
api(project(":kodex-common"))

// Use JUnit test framework for unit tests
testImplementation(kotlin("test"))
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package nl.jolanrensen.docProcessor

/**
* Hello $[A]=You
*/
interface A

/**
* Hello $[A]=You
*/
fun A.test() {}

/**
* @include [test]
* @set [A] Boe
*/
fun main() {
}
8 changes: 4 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
rootProject.name = "doc-processor-gradle-plugin"
rootProject.name = "KoDEx"

include("doc-processor-common")
include("doc-processor-gradle-plugin")
include("doc-processor-intellij-plugin")
include("kodex-common")
include("kodex-gradle-plugin")
include("kodex-intellij-plugin")

pluginManagement {
repositories {
Expand Down

0 comments on commit 9a2e120

Please sign in to comment.