-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update scala version, and buildscript #23
base: scala3
Are you sure you want to change the base?
Conversation
LICENSE
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think changing the license is acceptable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh idk i just changed it so it matched with the newer fabric stuff
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, dont change the license like this, if there is a reason to there is a whole process we would need to go through.
build.gradle
Outdated
// Scala Dependencies | ||
implementation "org.scala-lang:scala3-library_3:${project.scala_version}" | ||
implementation "org.scala-lang:scala-reflect:${project.scala_reflect_version}" | ||
implementation "org.scala-lang.modules:scala-xml_3:${project.scala_xml_version}"// might be unnecessary but wtv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed or not? I dont see why it would be, why also add scala-reflect
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
adding scala reflect can add more complex coding practice when using scala. and the xml idk why i added that i think it was just late at night so i wasnt thinking.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, thanks I have removed them. Its much easier to add them later if needed.
} | ||
} | ||
|
||
curseforge { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ill add this back.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh i didnt know fabric was on curseforge anymore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its fine, I would have also removed this plugin as I have my own. Ill sort this out after merging.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something may not work fine when I testing about it.
But I'm so happy to know someone working on maintaining fabric-language-scala
:)
// Scala Dependencies | ||
implementation "org.scala-lang:scala3-library_3:${project.scala_version}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it seems right? I don't think this is the correct nested-jar.
After I testing about it, I can't find any bundled jar in fabric-language-scala
.
Maybe correcting it into
modApi(include("org.scala-lang:scala3-library_3:${project.scala_version}"))
like fabric-language-kotlin
will be ok?
No description provided.