Комментарии:
Tooaasks! You sound so british more than Queen =)
ОтветитьThanks dawg.
Ответитьhow do i add a local jar file to class path using gradle? when i try to add it normally using IntelliJ and then reload gradle, it changes the class path, removing the dependency i added
ОтветитьVery nice video for gradle introduction!
Ответитьvery simple and well explained👌 thanks Tom👍
ОтветитьThanks a lot man, it was a huge help.
ОтветитьThis video is not easy to understand for complete beginners, which is a shame.
ОтветитьThanks this was so much help.
ОтветитьThanks bro this will hopefully make using java libraries a little less frustrating
Ответитьit was nice but was very fast
can u be slow and show detail of how you are giving the syntax??
Very informative tutorial, Thanks !!
ОтветитьGreat tutorial - thanks!
ОтветитьA great tutorial.
As Linus said talk is cheap, show me the code.
This is soooo helpful thank you!
ОтветитьHello Tom, Thank you so much for the wonderful video. I have been using Eclipse my whole life. Can you please suggest me with the best gradle content assist plugin that i can use with Eclipse to write the build.gradle file without typing to much stuff.
ОтветитьWow. This is a superb tutorial! Thank you
Ответитьthanks sure it good but you was so fast
ОтветитьIt's the tutorial I was searching, thank you !
ОтветитьThe acme of conciseness.
ОтветитьHi. I have an issue, and an explanation is that when I try testing or try executing a Gradle command in local it brings up this:
D:\Projects\Java\Freetime\First Gradle Project>./gradlew build
'.' is not recognized as an internal or external command,
operable program or batch file.
Another question is how do you instantly run and open the terminal for a project's main method?
Another question is how do you remove the highlight when you do ./ in the terminal?
Excellent tutorial that clarifies a lot of important beginner knowledge of Gradle !!!
Ответитьsave some time and run it in 1.5 speed
ОтветитьI needed some comparison with maven
ОтветитьThanks for this excellent and succinct demo of Gradle. It doesn't cover everything , but it's a perfect jumping off point to dive into Gradle's more advanced features.
ОтветитьThank you so much for this!!! I'm having a hard time in my internship but this helps immensely
ОтветитьCheers
ОтветитьNice tutorial
ОтветитьAugh. Your delivery was clear, but it's still over my head. I needed a brief intro detailing prerequisites. Like, "This is for developers that have built multiple projects using Maven and are familiar with a variety of configuration languages such as xml and Groovy"
I like the video, and I want to learn more about Maven and Gradle. I would love it if the many videos on this subject were more clear about their audience at the start of the video.
that was superb tutorial 👍🎉
ОтветитьVery good tutorial brother 👍
ОтветитьNice fine, thanks Tom. New to gradle, but had to use
testImplementation 'junit:junit:4.12'
instead of
testCompile 'junit:junit:4.12'
for it to work. Will check your course.
(v 7.0.0 installed with choclatey on Windows & using vscode)
Thanks for the video Tom. I've learned that to understand stuff I have to hear it from a few good vantage points. Thanks for incorporating the jar files into the example. I have an MS background and picked up Kotlin/Java/Groovy just recently. This covered something I didn't know I didn't know, so thats the best kind of gain.
Ответитьsuch concise explanation, great video!
Ответитьunbelievably concise and clear
ОтветитьVery nice tutorial to get me started. Also I am looking forward to checking out your free course.
Ответить100% agree on @Hegyi Levente's comment. Honestly, his course not only saved me tons of time but explanations are clear and straightforward. In terms of content structure and teaching, @Tom Gregory Tech's style easily surpasses any Coursera or LinkedIn courses. Thank you again. I am more than willing to pay your courses once you list them on the website. Cheers.
ОтветитьGreat work, thanks!
ОтветитьThanks
ОтветитьI have 0 knowledge about Gradle and this 10-minute video taught me the basics in the most concise way possible, thanks!
ОтветитьThis is clear, concise and to the point. Having worked with make, ant and maven - this is just what I needed - thanks.
ОтветитьCool tutorial. The stabilization on your face was a little weird though.
ОтветитьI wish I have seen this video 3 years ago. When I was starting in the programming world 😢
ОтветитьCould not move temporary workspace (C:\Users\Panda\.gradle\caches\8.9\transforms\5f81bb56960adfcb8e3b54c856d0094a-9edd766f-9f2f-42a3-8485-7a36f9d590ac) to immutable location (C:\Users\Panda\.gradle\caches\8.9\transforms\5f81bb56960adfcb8e3b54c856d0094a)
can you help me with this error?
This video is an absolute BLESSING, thank you so much!
Ответитьok, nowadays instead of typing:
attributes 'Main-Class' : 'com.<project name>.<class name>'
u need to simply type:
attributes 'Main-Class' : '<classname>'
at very least thats how it worked for me with structure "src/main/java/com/airoengine(my project name)/"