Skip to content

Commit

Permalink
Merge pull request #62 from jGauravGupta/MP-22
Browse files Browse the repository at this point in the history
MP-22 Add MicroProfile 2.0.x dependency in Payara Micro Maven Archetype
  • Loading branch information
mulderbaba authored Sep 9, 2018
2 parents 37a77e4 + b5e24b6 commit e7a8e51
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
<requiredProperty key="javaeeVersion">
<defaultValue>8.0</defaultValue>
</requiredProperty>
<requiredProperty key="microprofileVersion">
<defaultValue>2.0.1</defaultValue>
</requiredProperty>
<requiredProperty key="payaraMicroVersion">
<defaultValue>5.183</defaultValue>
</requiredProperty>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.javaee>${javaeeVersion}</version.javaee>
<version.payara.micro>${payaraMicroVersion}</version.payara.micro>
<version.payara>${payaraMicroVersion}</version.payara>
<version.microprofile>${microprofileVersion}</version.microprofile>
</properties>

<dependencies>
Expand All @@ -23,6 +24,13 @@
<version>${version.javaee}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile</groupId>
<artifactId>microprofile</artifactId>
<version>${version.microprofile}</version>
<scope>provided</scope>
<type>pom</type>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -52,7 +60,7 @@
<artifactId>payara-micro-maven-plugin</artifactId>
<version>1.0.1</version>
<configuration>
<payaraVersion>${version.payara.micro}</payaraVersion>
<payaraVersion>${version.payara}</payaraVersion>
<deployWar>true</deployWar>
#if (${autoBindHttp} == "true")
<commandLineOptions>
Expand Down

0 comments on commit e7a8e51

Please sign in to comment.