Stefano Zanella
08/27/2024, 2:14 PM./gradlew build and then perform the deployment. But with this I need to maintain in the workflow definition the same links between projects that Gradle knows about automatically. And what's worse, that's something expressed by a list of files and directories in a yaml file. So I'm wondering if there's a way to just have a single deploy task that leverages Gradle's project dependency model, and I'm wondering if anyone did or came across anything similar alreadyJean Helou
08/27/2024, 2:25 PMdeployment in this context ? if its application deploymentm shouldn't the gradle build command provide a standalone binary containing all the necessary dependencies ? if so why do you need to replicate the projects dependencies in your workflow ?
we do have a use case where we needed to know the dependency graph to avoid building things that were not changed, we built a gradle task that extracts the graph from the gradle projects themselves.
each of our app build generates a selfcontained artifact (a docker image in our case) which is then deployedPhilip W
08/27/2024, 2:38 PMStefano Zanella
08/27/2024, 3:00 PMStefano Zanella
08/27/2024, 3:12 PMStefano Zanella
08/27/2024, 3:14 PMJean Helou
08/27/2024, 3:18 PMPhilip W
08/27/2024, 3:31 PMStefano Zanella
08/27/2024, 4:20 PMStefano Zanella
08/27/2024, 4:23 PMPhilip W
08/27/2024, 8:39 PMdeepy
08/28/2024, 6:44 AM