user2836797
user2836797

Reputation:

Deploy a spring boot JAR to Azure Web Services with Gradle

I prefer to use gradle with Spring Boot. I have found resources about deploying to Azure with the Maven Plugin for Azure App Service Web Apps. How would one take an approach with gradle as a build system?

Upvotes: 3

Views: 592

Answers (1)

Vova Bilyachat
Vova Bilyachat

Reputation: 19494

Well you need to separate deployment and build.

You can use Azure build pipeline task to build with gradle.

Part of that build you can create artifacts which contains your app

Then create release which will deploy jars to azure app service

Upvotes: 2

Related Questions