Skip to content

Commit

Permalink
Move to 194 and clean up some unneeded dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Millidge <[email protected]>
  • Loading branch information
smillidge committed Dec 4, 2019
1 parent 8852518 commit 92f42a0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 27 deletions.
9 changes: 0 additions & 9 deletions ecosystem/maven-plugin-base-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,4 @@
</plugins>
</build>

<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>8.0</version>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
5 changes: 2 additions & 3 deletions javaee/arquillian-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
<dependency>
<groupId>fish.payara.extras</groupId>
<artifactId>payara-embedded-all</artifactId>
<version>4.1.2.181</version>
<scope>test</scope>
</dependency>
<!-- h2 with latest version v1.4.192 is not supported -->
Expand All @@ -97,8 +96,8 @@
</dependency>
<dependency>
<groupId>fish.payara.arquillian</groupId>
<artifactId>arquillian-payara-server-4-embedded</artifactId>
<version>1.0.Beta3</version>
<artifactId>arquillian-payara-server-embedded</artifactId>
<version>2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion javaee/rest-request-jsf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.19</version>
<version>1.19.4</version>
</dependency>
</dependencies>

Expand Down
9 changes: 0 additions & 9 deletions microprofile/metrics-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,4 @@
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<version>2.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<failOnMissingWebXml>false</failOnMissingWebXml>

<payara.version>5.193</payara.version>
<payara.version>5.194</payara.version>
</properties>

<modules>
Expand All @@ -67,15 +67,15 @@

<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>8.0.1</version>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>8.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile</groupId>
<artifactId>microprofile</artifactId>
<version>2.2</version>
<version>3.2</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
Expand Down

0 comments on commit 92f42a0

Please sign in to comment.