Skip to content

Commit

Permalink
refactor: reorg datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 5, 2023
1 parent 06ae467 commit 910d316
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 74 deletions.
21 changes: 11 additions & 10 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
@file:Suppress("UnstableApiUsage")

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

rootProject.name = "UnitEval"

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}
rootProject.name = "UnitEval"

// the abstract interface
include("unit-core")

// the code quality analysis codes
include("code-quality")
include(
"unit-core",
"unit-picker",

// picker code by rules
include("unit-picker")
// eval output by rules
include("unit-eval")
"code-quality"
)
4 changes: 0 additions & 4 deletions unit-eval/README.md

This file was deleted.

47 changes: 0 additions & 47 deletions unit-eval/build.gradle.kts

This file was deleted.

13 changes: 0 additions & 13 deletions unit-eval/src/main/kotlin/org/unimesh/eval/eval/Main.kt

This file was deleted.

3 changes: 3 additions & 0 deletions unit-picker/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ repositories {
}

dependencies {
implementation(projects.unitCore)
implementation(projects.codeQuality)

implementation(libs.clikt)
implementation(libs.serialization.json)

Expand Down

0 comments on commit 910d316

Please sign in to comment.