Thread: Build Automation Tools

Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 55
  1. #11  
    Community Veteran

    George's Avatar
    Join Date
    Mar 2009
    Posts
    7,059
    Thanks given
    2,100
    Thanks received
    2,939
    Rep Power
    5000
    Quote Originally Posted by Tyluur View Post
    What language(s) do you code in most often?

    -- edit

    [Only registered and activated users can see links. ]

    r u sure abt that george
    Java and kotlin, and me liking maven over gradle is totally a preference thing.


    Reply With Quote  
     

  2. #12  
    touched like seafood
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    23
    Posts
    4,836
    Thanks given
    1,676
    Thanks received
    1,563
    Discord
    View profile
    Rep Power
    1386
    Quote Originally Posted by George View Post
    Java and kotlin, and me liking maven over gradle is totally a preference thing.
    Probably. I started with gradle so it's > imo (+ the benefits ofc )
    [Only registered and activated users can see links. ] | [Only registered and activated users can see links. ] | [Only registered and activated users can see links. ] (official dog of rune-server)
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Reply With Quote  
     

  3. #13  
    Registered Member

    Join Date
    Dec 2009
    Posts
    757
    Thanks given
    336
    Thanks received
    414
    Discord
    View profile
    Rep Power
    834
    Quote Originally Posted by Kiissmyswagb View Post
    There are no problems with Gradle on Intellij so I'm calling cap. What problems are you talking about?
    There are many problems. Gradle not finding the defined dependencies or local subprojects, Intellij randomly showing errors everywhere at project startup, Gradle not using the defined Java version and there are many more. These things happen randomly.
    link removed
    Reply With Quote  
     

  4. Thankful users:


  5. #14  
    Registered Member
    JayArrowz's Avatar
    Join Date
    Sep 2008
    Posts
    67
    Thanks given
    60
    Thanks received
    64
    Discord
    View profile
    Rep Power
    392
    Quote Originally Posted by Displee View Post
    There are many problems. Gradle not finding the defined dependencies or local subprojects, Intellij randomly showing errors everywhere at project startup, Gradle not using the defined Java version and there are many more. These things happen randomly.
    You could be using it wrong? You might not be committing everything required, you do commit the wrapper
    [Only registered and activated users can see links. ]

    As for the java version it depends on your gradle configuration.
    Reply With Quote  
     

  6. #15  
    nice


    Join Date
    Jul 2014
    Posts
    665
    Thanks given
    288
    Thanks received
    341
    Discord
    View profile
    Rep Power
    2952
    yeah dunno, i've never had any issues with gradle(that weren't due to my own mistake) and i use it for basically every project
    Reply With Quote  
     

  7. #16  
    touched like seafood
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    23
    Posts
    4,836
    Thanks given
    1,676
    Thanks received
    1,563
    Discord
    View profile
    Rep Power
    1386
    Quote Originally Posted by Displee View Post
    There are many problems. Gradle not finding the defined dependencies or local subprojects, Intellij randomly showing errors everywhere at project startup, Gradle not using the defined Java version and there are many more. These things happen randomly.
    I haven't had any of those problems after configuring correctly.
    In my experience, I had a lot of small issues break some large scale things. When you're working with a monolith project, like most of the community , that can be annoying. I almost ragequit when I was trying to figure out how to publish last year lol.
    [Only registered and activated users can see links. ] | [Only registered and activated users can see links. ] | [Only registered and activated users can see links. ] (official dog of rune-server)
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Reply With Quote  
     

  8. #17  
    Registered Member
    Join Date
    Dec 2013
    Posts
    318
    Thanks given
    109
    Thanks received
    72
    Rep Power
    309
    Quote Originally Posted by Displee View Post
    There are many problems. Gradle not finding the defined dependencies or local subprojects, Intellij randomly showing errors everywhere at project startup, Gradle not using the defined Java version and there are many more. These things happen randomly.
    You're using Grade wrong and you're using IntelliJ incorrectly. These are beginner issues which with experience you'll understand.

    Don't be offended by this comment.
    Reply With Quote  
     

  9. #18  
    Programmer, Contributor, RM and Veteran




    Join Date
    Mar 2007
    Posts
    5,074
    Thanks given
    2,625
    Thanks received
    3,579
    Discord
    View profile
    Rep Power
    5000
    I really want a mixture of Gradle and Maven tbh. I'm not a particular fan of either.

    Maven's fixed lifecycle-based approach to projects holds it back - for example, if you use the exec plugin to make it so you can run your project from the CLI (like `./gradlew run`), you can't make it depend on the compile phase. Its multi-module support is also a bit rubbish. Gradle is much more flexible here as it represents the build as a set of tasks with a proper DAG, including the appropriate dependencies across modules if you run Gradle inside a module.

    However, Gradle's DSL is really poor imo - it's inconsistent, and probably too flexible cos you can make a real mess out of your build.gradle file quite easily. Gradle itself is also quite bloated (the fact you need to run the daemon process to avoid having to wait ages for it to start up says it all). Though I suppose one good thing is it does support stuff like parallel/incremental compilation better than Maven does.

    I really want something with the best bits from both tools: a more rigid convention-based configuration format or DSL (with more complicated logic in plugins) but with a proper DAG for executing tasks.
    .
    Reply With Quote  
     

  10. Thankful users:


  11. #19  
    touched like seafood
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    23
    Posts
    4,836
    Thanks given
    1,676
    Thanks received
    1,563
    Discord
    View profile
    Rep Power
    1386
    Quote Originally Posted by Graham View Post
    I really want a mixture of Gradle and Maven tbh. I'm not a particular fan of either.

    Maven's fixed lifecycle-based approach to projects holds it back - for example, if you use the exec plugin to make it so you can run your project from the CLI (like `./gradlew run`), you can't make it depend on the compile phase. Its multi-module support is also a bit rubbish. Gradle is much more flexible here as it represents the build as a set of tasks with a proper DAG, including the appropriate dependencies across modules.

    However, Gradle's DSL is really poor imo - it's inconsistent, and probably too flexible cos you can make a real mess out of your build.gradle file quite easily. Gradle itself is also quite bloated (the fact you need to run the daemon process to avoid having to wait ages for it to start up says it all). Though I suppose one good thing is it does support stuff like parallel/incremental compilation better than Maven does.

    I really want something with the best bits from both tools: a more rigid convention-based configuration format or DSL (with more complicated logic in plugins) but with a proper DAG for executing tasks.
    * emphasis on the parts that give me headaches *

    Gradle with the [Only registered and activated users can see links. ] is my go to at this point - I haven't used anything which I enjoyed more.
    Although publishing still confuses me at times .
    [Only registered and activated users can see links. ] | [Only registered and activated users can see links. ] | [Only registered and activated users can see links. ] (official dog of rune-server)
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Reply With Quote  
     

  12. #20  
    Registered Member

    Join Date
    Dec 2009
    Posts
    757
    Thanks given
    336
    Thanks received
    414
    Discord
    View profile
    Rep Power
    834
    Quote Originally Posted by JayArrowz View Post
    You could be using it wrong? You might not be committing everything required, you do commit the wrapper
    [Only registered and activated users can see links. ]

    As for the java version it depends on your gradle configuration.
    You probably didn't read my previous posts? I'm not experiencing most of these issues, but I come across many of them when on other peoples PC's.

    Quote Originally Posted by Tyluur View Post
    I haven't had any of those problems after configuring correctly.
    In my experience, I had a lot of small issues break some large scale things. When you're working with a monolith project, like most of the community , that can be annoying. I almost ragequit when I was trying to figure out how to publish last year lol.
    Quote Originally Posted by Kiissmyswagb View Post
    You're using Grade wrong and you're using IntelliJ incorrectly. These are beginner issues which with experience you'll understand.

    Don't be offended by this comment.
    I been using Gradle since 2018. I very well know what I'm talking about and doing. I've used Android Studio for over a year. I know what a hell Gradle can be.

    I can openup a Gradle project right now in Intellij and get 100 syntax errors for whatever reason. They are just not completly stable together.
    link removed
    Reply With Quote  
     


Page 2 of 6 FirstFirst 1234 ... LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Replies: 4
    Last Post: 09-18-2018, 08:00 PM
  2. Replies: 13
    Last Post: 07-13-2011, 05:55 PM
  3. Santa Claus Buildings Brings - Fallidor Club!
    By Shobaky in forum Tutorials
    Replies: 11
    Last Post: 05-29-2007, 02:30 AM
  4. Any One Got Some Project 16 Tools?
    By The nameless in forum Tools
    Replies: 2
    Last Post: 05-13-2007, 05:10 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •