Skip to content

Commit

Permalink
Move up to latest plugin dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jwalcorn authored Jan 7, 2024
1 parent 4b03768 commit 1fc2eed
Showing 1 changed file with 27 additions and 8 deletions.
35 changes: 27 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
Copyright 2017-2022 IBM Corp All Rights Reserved
Copyright 2017-2021 IBM Corp All Rights Reserved
Copyright 2022-2024 Kyndryl, All Rights Reserved
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Expand All @@ -20,7 +21,6 @@
<artifactId>trader</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>


<name>StockTrader - trader</name>

Expand All @@ -38,13 +38,14 @@

<app.name>trader</app.name>
<warContext>${app.name}</warContext>

<!-- Liberty configuration -->
<liberty.var.default.http.port>9080</liberty.var.default.http.port>
<liberty.var.default.https.port>9443</liberty.var.default.https.port>
<liberty.var.project.name>${project.artifactId}</liberty.var.project.name>
<liberty.var.app.context.root>${project.artifactId}</liberty.var.app.context.root>
<liberty.env.TEST_MODE>true</liberty.env.TEST_MODE>
<liberty.env.AUTH_TYPE>basic</liberty.env.AUTH_TYPE>
<liberty.env.AUTH_TYPE>none</liberty.env.AUTH_TYPE>
<liberty.env.JWT_AUDIENCE>stock</liberty.env.JWT_AUDIENCE>
<liberty.env.JWT_ISSUER>trader</liberty.env.JWT_ISSUER>
</properties>
Expand Down Expand Up @@ -78,7 +79,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>2.0.9</version>
<version>2.0.10</version>
</dependency>
<dependency>
<groupId>com.ibm.cos</groupId>
Expand Down Expand Up @@ -121,7 +122,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.12.1</version>
<configuration>
<source>17</source>
<target>17</target>
Expand Down Expand Up @@ -166,13 +167,31 @@
</execution>
</executions>
<configuration>
<stripVersion>true</stripVersion>
<assemblyArtifact>
<groupId>com.ibm.websphere.appserver.runtime</groupId>
<artifactId>wlp-webProfile8</artifactId>
<version>23.0.0.12</version>
<type>zip</type>
</assemblyArtifact>
<configDirectory>${basedir}/src/main/liberty/config</configDirectory>
<packageFile>${package.file}</packageFile>
<include>${packaging.type}</include>
<bootstrapProperties>
<app.location>${project.artifactId}-${project.version}.war</app.location>
<default.http.port>${testServerHttpPort}</default.http.port>
<default.https.port>${testServerHttpsPort}</default.https.port>
</bootstrapProperties>
<features>
<acceptLicense>true</acceptLicense>
</features>
<looseApplication>false</looseApplication>
<stripVersion>true</stripVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.3</version>
<executions>
<execution>
<goals>
Expand All @@ -188,7 +207,7 @@
<war.name>${liberty.var.app.context.root}</war.name>
<JWT_AUDIENCE>stock</JWT_AUDIENCE>
<JWT_ISSUER>trader</JWT_ISSUER>
<AUTH_TYPE>basic</AUTH_TYPE>
<AUTH_TYPE>none</AUTH_TYPE>
<TEST_MODE>true</TEST_MODE>
</systemPropertyVariables>
</configuration>
Expand Down

0 comments on commit 1fc2eed

Please sign in to comment.