diff options
author | Thomas <> | 2023-09-15 15:16:09 +0200 |
---|---|---|
committer | Thomas <> | 2024-01-26 18:49:57 +0100 |
commit | 1a77d8ff850d014cd81fcc1fd867a2953b497833 (patch) | |
tree | d6395ddfd6e2f245f6ab90e7f605f27f1a6a4fa0 /repository/eu/eidas/eidas-jcache-ignite | |
parent | 7c8ca3a4a011623c62b8407b12b4295caad0c4d4 (diff) | |
download | National_eIDAS_Gateway-1a77d8ff850d014cd81fcc1fd867a2953b497833.tar.gz National_eIDAS_Gateway-1a77d8ff850d014cd81fcc1fd867a2953b497833.tar.bz2 National_eIDAS_Gateway-1a77d8ff850d014cd81fcc1fd867a2953b497833.zip |
chore(core): add eIDAS-Node v2.7 dependencies
Diffstat (limited to 'repository/eu/eidas/eidas-jcache-ignite')
-rw-r--r-- | repository/eu/eidas/eidas-jcache-ignite/2.7.0/eidas-jcache-ignite-2.7.0.jar | bin | 0 -> 4273 bytes | |||
-rw-r--r-- | repository/eu/eidas/eidas-jcache-ignite/2.7.0/eidas-jcache-ignite-2.7.0.pom | 112 |
2 files changed, 112 insertions, 0 deletions
diff --git a/repository/eu/eidas/eidas-jcache-ignite/2.7.0/eidas-jcache-ignite-2.7.0.jar b/repository/eu/eidas/eidas-jcache-ignite/2.7.0/eidas-jcache-ignite-2.7.0.jar Binary files differnew file mode 100644 index 00000000..ea3c16cf --- /dev/null +++ b/repository/eu/eidas/eidas-jcache-ignite/2.7.0/eidas-jcache-ignite-2.7.0.jar diff --git a/repository/eu/eidas/eidas-jcache-ignite/2.7.0/eidas-jcache-ignite-2.7.0.pom b/repository/eu/eidas/eidas-jcache-ignite/2.7.0/eidas-jcache-ignite-2.7.0.pom new file mode 100644 index 00000000..d1daac21 --- /dev/null +++ b/repository/eu/eidas/eidas-jcache-ignite/2.7.0/eidas-jcache-ignite-2.7.0.pom @@ -0,0 +1,112 @@ +<!-- + ~ Copyright (c) 2023 by European Commission + ~ + ~ Licensed under the EUPL, Version 1.2 or - as soon they will be + ~ approved by the European Commission - subsequent versions of the + ~ EUPL (the "Licence"); + ~ You may not use this work except in compliance with the Licence. + ~ You may obtain a copy of the Licence at: + ~ https://joinup.ec.europa.eu/page/eupl-text-11-12 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the Licence is distributed on an "AS IS" basis, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + ~ implied. + ~ See the Licence for the specific language governing permissions and + ~ limitations under the Licence. + --> + +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 + http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <artifactId>eidas-jcache-ignite</artifactId> + <packaging>jar</packaging> + <name>eIDAS JCache Ignite</name> + <description>Implements JCache using Ignite.</description> + + <parent> + <groupId>eu.eidas</groupId> + <artifactId>eidas-parent</artifactId> + <version>2.7.0</version> + <relativePath>../EIDAS-Parent/pom.xml</relativePath> + </parent> + + <properties> + <ignite.version>2.8.1</ignite.version> + </properties> + + <dependencies> + <dependency> + <groupId>eu.eidas</groupId> + <artifactId>eidas-commons</artifactId> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </dependency> + <dependency> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-core</artifactId> + <version>${ignite.version}</version> + <exclusions> + <exclusion> + <groupId>org.gridgain</groupId> + <artifactId>ignite-shmem</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-spring</artifactId> + <version>${ignite.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-indexing</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-aop</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-beans</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-expression</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-tx</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-jdbc</artifactId> + </exclusion> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + </dependency> + <dependency> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-slf4j</artifactId> + <version>${ignite.version}</version> + </dependency> + </dependencies> +</project> |