diff options
author | Thomas <> | 2022-03-07 18:20:34 +0100 |
---|---|---|
committer | Thomas <> | 2022-03-09 13:19:59 +0100 |
commit | 552497957fe6509087fc9a1a33fae5812a615094 (patch) | |
tree | 3276319b87d35966da32c19c3a2731dd470fd741 /connector_lib/pom.xml | |
parent | 2d55fe3f0f5a76c73d7c34c90c333cc4c7eb9b50 (diff) | |
download | National_eIDAS_Gateway-552497957fe6509087fc9a1a33fae5812a615094.tar.gz National_eIDAS_Gateway-552497957fe6509087fc9a1a33fae5812a615094.tar.bz2 National_eIDAS_Gateway-552497957fe6509087fc9a1a33fae5812a615094.zip |
refactor(core): move 'connector_lib' to 'core_common_lib'
Diffstat (limited to 'connector_lib/pom.xml')
-rw-r--r-- | connector_lib/pom.xml | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/connector_lib/pom.xml b/connector_lib/pom.xml deleted file mode 100644 index 0c9a1ab6..00000000 --- a/connector_lib/pom.xml +++ /dev/null @@ -1,107 +0,0 @@ -<?xml version="1.0"?> -<project - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" - xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>at.asitplus.eidas</groupId> - <artifactId>ms_specific</artifactId> - <version>1.2.4-SNAPSHOT</version> - </parent> - <groupId>at.asitplus.eidas.ms_specific</groupId> - <artifactId>connector_lib</artifactId> - <name>ms_specific_connector_lib</name> - <packaging>jar</packaging> - - <url>http://maven.apache.org</url> - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - </properties> - <dependencies> - <dependency> - <groupId>at.gv.egiz.eaaf</groupId> - <artifactId>eaaf-core</artifactId> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-webmvc</artifactId> - </dependency> - <dependency> - <groupId>javax.validation</groupId> - <artifactId>validation-api</artifactId> - </dependency> - - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>javax.servlet-api</artifactId> - <scope>provided</scope> - </dependency> - - <!-- jUnit test dependencies --> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-test</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>at.gv.egiz.eaaf</groupId> - <artifactId>eaaf_core_utils</artifactId> - <scope>test</scope> - <type>test-jar</type> - </dependency> - <dependency> - <groupId>at.gv.egiz.eaaf</groupId> - <artifactId>eaaf-core</artifactId> - <scope>test</scope> - <type>test-jar</type> - </dependency> - - </dependencies> - - <build> - <finalName>msConnectorLib</finalName> - - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.8</source> - <target>1.8</target> - </configuration> - </plugin> - - <!-- enable co-existence of testng and junit --> - <plugin> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <threadCount>1</threadCount> - </configuration> - <dependencies> - <dependency> - <groupId>org.apache.maven.surefire</groupId> - <artifactId>surefire-junit47</artifactId> - <version>${surefire.version}</version> - </dependency> - </dependencies> - </plugin> - - <plugin> - <groupId>com.github.spotbugs</groupId> - <artifactId>spotbugs-maven-plugin</artifactId> - <version>${spotbugs-maven-plugin.version}</version> - <configuration> - <excludeFilterFile>checks/spotbugs-exclude.xml</excludeFilterFile> - </configuration> - </plugin> - - </plugins> - </build> - -</project> |