This commit is contained in:
parent
5f21cd4cf9
commit
27a00f489e
|
@ -0,0 +1,6 @@
|
||||||
|
[submodule "sedna"]
|
||||||
|
path = sedna
|
||||||
|
url = https://github.com/fnuecke/sedna
|
||||||
|
[submodule "ceres"]
|
||||||
|
path = ceres
|
||||||
|
url = https://github.com/fnuecke/ceres
|
|
@ -21,8 +21,10 @@
|
||||||
<set>
|
<set>
|
||||||
<option value="$PROJECT_DIR$" />
|
<option value="$PROJECT_DIR$" />
|
||||||
<option value="$PROJECT_DIR$/buildSrc" />
|
<option value="$PROJECT_DIR$/buildSrc" />
|
||||||
|
<option value="$PROJECT_DIR$/ceres" />
|
||||||
<option value="$PROJECT_DIR$/emulator" />
|
<option value="$PROJECT_DIR$/emulator" />
|
||||||
<option value="$PROJECT_DIR$/fabric" />
|
<option value="$PROJECT_DIR$/fabric" />
|
||||||
|
<option value="$PROJECT_DIR$/sedna" />
|
||||||
</set>
|
</set>
|
||||||
</option>
|
</option>
|
||||||
</GradleProjectSettings>
|
</GradleProjectSettings>
|
||||||
|
|
|
@ -46,5 +46,10 @@
|
||||||
<option name="name" value="Gradle Central Plugin Repository" />
|
<option name="name" value="Gradle Central Plugin Repository" />
|
||||||
<option name="url" value="https://plugins.gradle.org/m2" />
|
<option name="url" value="https://plugins.gradle.org/m2" />
|
||||||
</remote-repository>
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="maven" />
|
||||||
|
<option name="name" value="maven" />
|
||||||
|
<option name="url" value="https://maven.pkg.github.com/fnuecke/ceres" />
|
||||||
|
</remote-repository>
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
|
@ -7,5 +7,6 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
// todo look into how to get this to follow the version in properties
|
||||||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20")
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20")
|
||||||
}
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit d1e880953dcc0a99c36286556fb4fcf6d3a368bd
|
|
@ -6,11 +6,16 @@ plugins {
|
||||||
version = providers.gradleProperty("emulator_version").get()
|
version = providers.gradleProperty("emulator_version").get()
|
||||||
group = providers.gradleProperty("maven_group").get()
|
group = providers.gradleProperty("maven_group").get()
|
||||||
val baseName = providers.gradleProperty("archives_base_name").get()
|
val baseName = providers.gradleProperty("archives_base_name").get()
|
||||||
|
val kotlinVersion = providers.gradleProperty("kotlin_version").get()
|
||||||
|
|
||||||
base {
|
base {
|
||||||
archivesName = "$baseName-emulator"
|
archivesName = "$baseName-emulator"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":sedna"))
|
||||||
|
}
|
||||||
|
|
||||||
java {
|
java {
|
||||||
toolchain {
|
toolchain {
|
||||||
languageVersion.set(JavaLanguageVersion.of(17))
|
languageVersion.set(JavaLanguageVersion.of(17))
|
||||||
|
|
|
@ -10,6 +10,10 @@ mod_version = 0.0.1
|
||||||
maven_group = pm.n2
|
maven_group = pm.n2
|
||||||
archives_base_name = notcompute
|
archives_base_name = notcompute
|
||||||
|
|
||||||
|
#kotlin
|
||||||
|
|
||||||
|
kotlin_version = 1.8.20
|
||||||
|
|
||||||
# fabric stuff and deps
|
# fabric stuff and deps
|
||||||
|
|
||||||
minecraft_version=1.20.1
|
minecraft_version=1.20.1
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 7396205cdab193b8df29bac14710ab8d85b66e67
|
|
@ -7,4 +7,4 @@ pluginManagement {
|
||||||
}
|
}
|
||||||
|
|
||||||
rootProject.name = "notcompute-root"
|
rootProject.name = "notcompute-root"
|
||||||
include("fabric","emulator")
|
include("fabric","emulator","ceres","sedna")
|
Loading…
Reference in New Issue