Advertisement
Guest User

Untitled

a guest
Feb 16th, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. # Sets default memory used for gradle commands. Can be overridden by user or command line properties.
  2. # This is required to provide enough memory for the Minecraft decompilation process.
  3. org.gradle.jvmargs=-Xmx3G
  4. org.gradle.daemon=false
  5.  
  6.  
  7. archives_base_name=createoreproduction
  8. maven_group=net.oscey.createoreproduction
  9.  
  10. loom.platform = forge
  11.  
  12. ## Environment Properties
  13.  
  14. # The Minecraft version must agree with the Forge version to get a valid artifact
  15. minecraft_version=1.20.1
  16. # The Minecraft version range can use any release version of Minecraft as bounds.
  17. # Snapshots, pre-releases, and release candidates are not guaranteed to sort properly
  18. # as they do not follow standard versioning conventions.
  19. minecraft_version_range=[1.20.1,1.21)
  20. # The Forge version must agree with the Minecraft version to get a valid artifact
  21. forge_version=47.0.19
  22. # The Forge version range can use any version of Forge as bounds or match the loader version range
  23. forge_version_range=[47,)
  24. # The loader version range can only use the major version of Forge/FML as bounds
  25. loader_version_range=[47,)
  26. # The mapping channel to use for mappings.
  27. # The default set of supported mapping channels are ["official", "snapshot", "snapshot_nodoc", "stable", "stable_nodoc"].
  28. # Additional mapping channels can be registered through the "channelProviders" extension in a Gradle plugin.
  29. #
  30. # | Channel | Version | |
  31. # |-----------|----------------------|--------------------------------------------------------------------------------|
  32. # | official | MCVersion | Official field/method names from Mojang mapping files |
  33. # | parchment | YYYY.MM.DD-MCVersion | Open community-sourced parameter names and javadocs layered on top of official |
  34. #
  35. # You must be aware of the Mojang license when using the 'official' or 'parchment' mappings.
  36. # See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md
  37. #
  38. # Parchment is an unofficial project maintained by ParchmentMC, separate from Minecraft Forge.
  39. # Additional setup is needed to use their mappings, see https://parchmentmc.org/docs/getting-started
  40. mapping_channel=parchment
  41. # The mapping version to query from the mapping channel.
  42. # This must match the format required by the mapping channel.
  43. mapping_version=2023.06.26-1.20.1
  44.  
  45. ## create mod stuff thingys
  46. create_version = 0.5.0.e-195
  47. flywheel_version = 0.6.6-94
  48. registrate_version = MC1.18.2-1.1.3
  49.  
  50. ## Mod Properties
  51.  
  52. # The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63}
  53. # Must match the String constant located in the main mod class annotated with @Mod.
  54. mod_id=createoreproduction
  55. # The human-readable display name for the mod.
  56. mod_name=Create: Ore Production
  57. # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
  58. mod_license=MIT
  59. # The mod version. See https://semver.org/
  60. mod_version=1.0-mc1.20.1
  61. # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
  62. # This should match the base package used for the mod sources.
  63. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html
  64. mod_group_id=net.oscey.createoreproduction
  65. # The authors of the mod. This is a simple text string that is used for display purposes in the mod list.
  66. mod_authors=oscey
  67. # The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list.
  68. mod_description=oreprod test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement