Skip to content

Commit

Permalink
Rename projects to match their artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
Virtlink committed Jul 10, 2024
1 parent db95c40 commit 3bbd4fa
Show file tree
Hide file tree
Showing 1,476 changed files with 29 additions and 97 deletions.
45 changes: 0 additions & 45 deletions core/depconstraints/build.gradle.kts

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
44 changes: 22 additions & 22 deletions core/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,33 +10,33 @@ plugins {
id("org.metaborg.convention.settings") version "0.0.11"
}

fun includeProject(path: String, id: String = "pie.${path.replace('/', '.')}") {
include(id)
project(":$id").projectDir = file(path)
}

includeProject("api")
includeProject("graph")
includeProject("runtime")
include(":pie.api")
include(":pie.graph")
include(":pie.runtime")

includeProject("api.test")
includeProject("runtime.test")
include(":pie.api.test")
include(":pie.runtime.test")

includeProject("share.coroutine")
include(":pie.share.coroutine")

includeProject("serde.kryo")
includeProject("serde.fst")
include(":pie.serde.kryo")
include(":pie.serde.fst")

includeProject("store.lmdb")
include(":pie.store.lmdb")

includeProject("taskdefs.guice")
includeProject("dagger")
include(":pie.taskdefs.guice")
include(":pie.dagger")

includeProject("task.java")
includeProject("task.java.ecj")
includeProject("task.archive")
include(":pie.task.java")
include(":pie.task.java.ecj")
include(":pie.ask.archive")

includeProject("example/copyfile")
includeProject("example/helloworld.java")
includeProject("example/helloworld.kotlin")
includeProject("example/playground")
include(":pie.example.copyfile")
project(":pie.example.copyfile").projectDir = file("example/copyfile/")
include(":pie.example.helloworld.java")
project(":pie.example.helloworld.java").projectDir = file("example/helloworld.java/")
include(":pie.example.helloworld.kotlin")
project(":pie.example.helloworld.kotlin").projectDir = file("example/helloworld.kotlin/")
include(":pie.example.playground")
project(":pie.example.playground").projectDir = file("example/playground/")
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 3bbd4fa

Please sign in to comment.