Skip to content

Fixes #553 - Fix 'Deploy a Quarkus application on managed JavaSE' example #554

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appservice/javase-quarkus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ You can see the application in action at http://localhost:8080/hello
To deploy the application use the following command lines:

````shell
export APPSERVICE_JAVASE_QUARKUS=javazappsvc-javase-quarkus-$RANDOM
export APPSERVICE_JAVASE_QUARKUS=joazasp-javase-quarkus-$RANDOM

mvn azure-webapp:deploy \
-DappName=$APPSERVICE_JAVASE_QUARKUS \
Expand Down
21 changes: 9 additions & 12 deletions appservice/javase-quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,25 @@

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>examples.azure.appservice</groupId>
<artifactId>project</artifactId>
<version>1-SNAPSHOT</version>
</parent>
<groupId>examples.azure.appservice</groupId>
<artifactId>appservice-javase-quarkus</artifactId>
<name>Azure App Service :: Deploy a managed JavaSE Quarkus application</name>
<version>1-SNAPSHOT</version>
<name>Deploy a Quarkus application to managed JavaSE</name>
<packaging>jar</packaging>
<properties>
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<maven.compiler.parameters>true</maven.compiler.parameters>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.platform.version>2.0.2.Final</quarkus.platform.version>
<surefire-plugin.version>3.0.0-M5</surefire-plugin.version>
<appName>javase-quarkus-${example.postfix}</appName>
<appServicePlan>azure-examples-appserviceplan</appServicePlan>
<resourceGroup>azure-examples</resourceGroup>
<appName>quarkus</appName>
<appServicePlan>joazasp</appServicePlan>
<resourceGroup>joazrg</resourceGroup>
</properties>
<dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -107,7 +104,7 @@
<appServicePlanName>${appServicePlan}</appServicePlanName>
<runtime>
<os>linux</os>
<javaVersion>jre11</javaVersion>
<javaVersion>Java 17</javaVersion>
</runtime>
<appSettings>
<property>
Expand Down
Loading