diff options
-rw-r--r-- | pom.xml | 35 |
1 files changed, 32 insertions, 3 deletions
@@ -44,11 +44,11 @@ <iaik.prod.iaik_xsect.version>2.14_moa</iaik.prod.iaik_xsect.version> <hsm-facade-provider.version>0.9.1</hsm-facade-provider.version> - <io.grpc-core.version>1.42.1</io.grpc-core.version> + <io.grpc-core.version>1.53.0</io.grpc-core.version> <!-- Other third-party libs --> - <spring-boot-starter-web.version>2.7.8</spring-boot-starter-web.version> - <org.springframework.version>5.3.25</org.springframework.version> + <spring-boot-starter-web.version>2.7.9</spring-boot-starter-web.version> + <org.springframework.version>5.3.26</org.springframework.version> <org.opensaml.version>4.0.1</org.opensaml.version> <org.apache.santuario.xmlsec.version>2.3.2</org.apache.santuario.xmlsec.version> <org.cryptacular.version>1.2.5</org.cryptacular.version> @@ -88,6 +88,9 @@ <xerces.version>2.12.2</xerces.version> <xalan.version>2.7.1</xalan.version> + <woodstox-core.version>6.5.0</woodstox-core.version> + <snakeyaml.version>1.33</snakeyaml.version> + <!-- jUnit testing --> <surefire.version>2.22.2</surefire.version> <junit-jupiter-api.version>5.8.2</junit-jupiter-api.version> @@ -419,6 +422,21 @@ <artifactId>provider</artifactId> <version>${hsm-facade-provider.version}</version> </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-protobuf</artifactId> + <version>${io.grpc-core.version}</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-netty-shaded</artifactId> + <version>${io.grpc-core.version}</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-stub</artifactId> + <version>${io.grpc-core.version}</version> + </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-core</artifactId> @@ -662,6 +680,17 @@ <version>${com.google.guava.version}</version> </dependency> + <dependency> + <groupId>com.fasterxml.woodstox</groupId> + <artifactId>woodstox-core</artifactId> + <version>${woodstox-core.version}</version> + </dependency> + <dependency> + <groupId>org.yaml</groupId> + <artifactId>snakeyaml</artifactId> + <version>${snakeyaml.version}</version> + </dependency> + <!-- Testing --> <dependency> <groupId>org.springframework</groupId> |