Advertisement
GeradesoLukas

Untitled

Jan 11th, 2024
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. architectury {
  2. common(rootProject.enabled_platforms.split(","))
  3. }
  4.  
  5. loom {
  6. accessWidenerPath = file("src/main/resources/weaponleveling.accesswidener")
  7. }
  8.  
  9. dependencies {
  10. // We depend on fabric loader here to use the fabric @Environment annotations and get the mixin dependencies
  11. // Do NOT use other classes from fabric loader
  12. modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
  13. include("com.github.LlamaLad7:MixinExtras:0.1.1")
  14. // Remove the next line if you don't want to depend on the API
  15. modApi "dev.architectury:architectury:${rootProject.architectury_version}"
  16.  
  17. //implementation(annotationProcessor("com.github.LlamaLad7.MixinExtras:${rootProject.mixinextras_version}"))
  18. }
  19.  
  20. publishing {
  21. publications {
  22. mavenCommon(MavenPublication) {
  23. artifactId = rootProject.archives_base_name
  24. from components.java
  25. }
  26. }
  27.  
  28. // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
  29. repositories {
  30. // Add repositories to publish to here.
  31. }
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement