This commit is contained in:
Jane Shimmer 2023-08-03 15:41:57 -04:00
parent 5f21cd4cf9
commit 27a00f489e
10 changed files with 26 additions and 1 deletions

6
.gitmodules vendored Normal file
View File

@ -0,0 +1,6 @@
[submodule "sedna"]
path = sedna
url = https://github.com/fnuecke/sedna
[submodule "ceres"]
path = ceres
url = https://github.com/fnuecke/ceres

View File

@ -21,8 +21,10 @@
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/buildSrc" />
<option value="$PROJECT_DIR$/ceres" />
<option value="$PROJECT_DIR$/emulator" />
<option value="$PROJECT_DIR$/fabric" />
<option value="$PROJECT_DIR$/sedna" />
</set>
</option>
</GradleProjectSettings>

View File

@ -46,5 +46,10 @@
<option name="name" value="Gradle Central Plugin Repository" />
<option name="url" value="https://plugins.gradle.org/m2" />
</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>
</project>

View File

@ -7,5 +7,6 @@ repositories {
}
dependencies {
// todo look into how to get this to follow the version in properties
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20")
}

1
ceres Submodule

@ -0,0 +1 @@
Subproject commit d1e880953dcc0a99c36286556fb4fcf6d3a368bd

View File

@ -6,11 +6,16 @@ plugins {
version = providers.gradleProperty("emulator_version").get()
group = providers.gradleProperty("maven_group").get()
val baseName = providers.gradleProperty("archives_base_name").get()
val kotlinVersion = providers.gradleProperty("kotlin_version").get()
base {
archivesName = "$baseName-emulator"
}
dependencies {
implementation(project(":sedna"))
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))

View File

@ -10,6 +10,10 @@ mod_version = 0.0.1
maven_group = pm.n2
archives_base_name = notcompute
#kotlin
kotlin_version = 1.8.20
# fabric stuff and deps
minecraft_version=1.20.1

BIN
riscv-spec-v2.2.pdf Normal file

Binary file not shown.

1
sedna Submodule

@ -0,0 +1 @@
Subproject commit 7396205cdab193b8df29bac14710ab8d85b66e67

View File

@ -7,4 +7,4 @@ pluginManagement {
}
rootProject.name = "notcompute-root"
include("fabric","emulator")
include("fabric","emulator","ceres","sedna")