kauan99 Posted August 30, 2015 Posted August 30, 2015 is there an annotation I can use to mark a class (or maybe even a method in a class?) so gradle will not include it in the output jar files? or maybe some gradle razzamafoo I can do inside build.gradle to achieve that? thanks. Quote WIP mods: easyautomation, easyenergy, easyelectronics, easymoney, easytrasportation, easysecurity, easymultiverse, easyfactions, easymagick, easyalchemy, easyseasons
kauan99 Posted August 30, 2015 Author Posted August 30, 2015 Nice. it can't be done annotating the class though? Quote WIP mods: easyautomation, easyenergy, easyelectronics, easymoney, easytrasportation, easysecurity, easymultiverse, easyfactions, easymagick, easyalchemy, easyseasons
kauan99 Posted August 30, 2015 Author Posted August 30, 2015 I will use the first solution. the annotation is beyond me thanks! Quote WIP mods: easyautomation, easyenergy, easyelectronics, easymoney, easytrasportation, easysecurity, easymultiverse, easyfactions, easymagick, easyalchemy, easyseasons
kauan99 Posted August 30, 2015 Author Posted August 30, 2015 one last thing can I exclude a whole package? like compileJava { exclude 'com/mymod/tests/' } Quote WIP mods: easyautomation, easyenergy, easyelectronics, easymoney, easytrasportation, easysecurity, easymultiverse, easyfactions, easymagick, easyalchemy, easyseasons
shadowfacts Posted August 30, 2015 Posted August 30, 2015 You can use compileJava { exclude 'com/mymod/test/*.java } Quote Don't make mods if you don't know Java. Check out my website: http://shadowfacts.net Developer of many mods
Draco18s Posted August 30, 2015 Posted August 30, 2015 one last thing can I exclude a whole package? like compileJava { exclude 'com/mymod/tests/' } exclude 'com/mymod/tests/**' Quote Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
kauan99 Posted August 30, 2015 Author Posted August 30, 2015 thanks guys. I wish I knew that language gradle uses better. I just copy paste stuff... It would be better if it would use a language more similar to java. Zen Scripts are scripts but are completely clear to anyone familiar with a C++ descendant Quote WIP mods: easyautomation, easyenergy, easyelectronics, easymoney, easytrasportation, easysecurity, easymultiverse, easyfactions, easymagick, easyalchemy, easyseasons
shadowfacts Posted August 30, 2015 Posted August 30, 2015 Gradle is based on Groovy which runs on the JVM, so anything you can do in Java you can do in Groovy. Quote Don't make mods if you don't know Java. Check out my website: http://shadowfacts.net Developer of many mods
Draco18s Posted August 30, 2015 Posted August 30, 2015 Gradle is based on Groovy which runs on the JVM, so anything you can do in Java you can do in Groovy. *Giggle* Groovy's site says that Groovy has a "flat learning curve" and if they knew what a learning curve actually was, they'd realize that "flat" is not how to describe a curve. Or more specifically, that it's a function f(x) where x is the number of minutes spent and f(x) is skill obtained. A flat result from f(x) means that it's never approaching 1, aka mastery. http://english.stackexchange.com/questions/6209/what-is-meant-by-steep-learning-curve/6226#6226 They should have used the phrase "easy to learn." Quote Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.