nilTheDev
10/25/2021, 7:50 AM<<
syntax I encountered which is an alternative of doLast
. Here is a snippet,
3.times {
task "yayGradle$it" << {
println 'Gradle rocks'
}
}
but it isn't working. I anticipate the syntax my have been deprecated. Can anyone point out which version I can use to run that snippet?Javier
10/25/2021, 7:54 AMJavier
10/25/2021, 7:54 AMJavier
10/25/2021, 7:55 AMnilTheDev
10/25/2021, 7:55 AMnilTheDev
10/25/2021, 7:56 AMJavier
10/25/2021, 7:56 AMgildor
10/25/2021, 9:54 AMnilTheDev
10/25/2021, 10:01 AMnilTheDev
10/25/2021, 10:02 AMgildor
10/25/2021, 10:03 AMgildor
10/25/2021, 10:06 AMnilTheDev
10/25/2021, 10:06 AM./gradlew build
. I want something that talks about more fundamentals. So that I can understand what's going on.gildor
10/25/2021, 10:07 AMnilTheDev
10/25/2021, 10:12 AMkotlinc -cp someJar someKtFile
java -cp someJar someClassFile
2.
a. Initialise a Gradle project using Intellij
b. write some code (maybe add some `implementation` in between in the build.gradle file)
c. and run that using some IDE features
I want something that would bridge the gap between these two.nilTheDev
10/25/2021, 10:12 AMVampire
10/25/2021, 12:25 PMAlex Nordlund
10/26/2021, 8:58 AM