[BAEL-17326] - Extract versions into properties
This commit is contained in:
@@ -18,23 +18,26 @@
|
||||
<h2.version>1.4.199</h2.version>
|
||||
<httpPort>9080</httpPort>
|
||||
<httpsPort>9443</httpsPort>
|
||||
<nimbus-jose-jwt.version>7.3</nimbus-jose-jwt.version>
|
||||
<bcprov-jdk15on.version>1.62</bcprov-jdk15on.version>
|
||||
<bcpkix-jdk15on.version>1.62</bcpkix-jdk15on.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.nimbusds</groupId>
|
||||
<artifactId>nimbus-jose-jwt</artifactId>
|
||||
<version>7.3</version>
|
||||
<version>${nimbus-jose-jwt.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.bouncycastle</groupId>
|
||||
<artifactId>bcprov-jdk15on</artifactId>
|
||||
<version>1.62</version>
|
||||
<version>${bcprov-jdk15on.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.bouncycastle</groupId>
|
||||
<artifactId>bcpkix-jdk15on</artifactId>
|
||||
<version>1.62</version>
|
||||
<version>${bcpkix-jdk15on.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
|
||||
@@ -18,13 +18,14 @@
|
||||
<httpsPort>8643</httpsPort>
|
||||
<jwt.issuer>http://localhost:9080</jwt.issuer>
|
||||
<jwt.resourceId>http://localhost:9280</jwt.resourceId>
|
||||
<microprofile-jwt-auth-api.version>1.1</microprofile-jwt-auth-api.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.microprofile.jwt</groupId>
|
||||
<artifactId>microprofile-jwt-auth-api</artifactId>
|
||||
<version>1.1</version>
|
||||
<version>${microprofile-jwt-auth-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
@@ -15,19 +15,21 @@
|
||||
<failOnMissingWebXml>false</failOnMissingWebXml>
|
||||
<openliberty.version>RELEASE</openliberty.version>
|
||||
<openliberty.maven.version>2.6.4</openliberty.maven.version>
|
||||
<javaee-web-api.version>8.0</javaee-web-api.version>
|
||||
<microprofile-config-api.version>1.3</microprofile-config-api.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>javax</groupId>
|
||||
<artifactId>javaee-web-api</artifactId>
|
||||
<version>8.0</version>
|
||||
<version>${javaee-web-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.microprofile.config</groupId>
|
||||
<artifactId>microprofile-config-api</artifactId>
|
||||
<version>1.3</version>
|
||||
<version>${microprofile-config-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
Reference in New Issue
Block a user