From 7acb185d5e74296aeef02e756f8b38b5762cdbd3 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Tue, 26 Mar 2019 11:29:14 +0100 Subject: [PATCH] library for vcard parsing added --- converter-CellDesigner/pom.xml | 9 ++++++++- pom.xml | 2 ++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/converter-CellDesigner/pom.xml b/converter-CellDesigner/pom.xml index cbbc2ea562..1a8111a557 100644 --- a/converter-CellDesigner/pom.xml +++ b/converter-CellDesigner/pom.xml @@ -1,4 +1,5 @@ -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -25,6 +26,12 @@ <version>1.0</version> </dependency> + <dependency> + <groupId>com.googlecode.ez-vcard</groupId> + <artifactId>ez-vcard</artifactId> + <version>${ez-vcard.version}</version> + </dependency> + <!-- Log4J --> <dependency> <groupId>log4j</groupId> diff --git a/pom.xml b/pom.xml index a069d78f0f..2414cc9629 100644 --- a/pom.xml +++ b/pom.xml @@ -106,6 +106,8 @@ <surefire-api.version>2.22.1</surefire-api.version> + <ez-vcard.version>0.10.5</ez-vcard.version> + <surefire.rerunFailingTestsCount>4</surefire.rerunFailingTestsCount> </properties> -- GitLab