blob: a6e9befe5dd1fc40bfbce9cbf63515cc6d712570 [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Michael Lando451a3402017-02-19 10:28:42 +02003
4 <modelVersion>4.0.0</modelVersion>
5
Michael Lando451a3402017-02-19 10:28:42 +02006 <artifactId>security-utils</artifactId>
7
8 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>sdc-main</artifactId>
Michael Lando0ad3c802017-09-19 16:32:59 +030011 <version>1.2.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020012 </parent>
13
Michael Landoa5445102018-03-04 14:53:33 +020014 <properties>
15 <sonar.skip>true</sonar.skip>
16 </properties>
17
Michael Lando451a3402017-02-19 10:28:42 +020018 <dependencies>
Michael Landoa5445102018-03-04 14:53:33 +020019
Michael Lando451a3402017-02-19 10:28:42 +020020 <dependency>
21 <groupId>junit</groupId>
22 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030023 <version>${junit.version}</version>
24 <scope>test</scope>
Michael Lando451a3402017-02-19 10:28:42 +020025 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +020026
27 <!-- slf4j + logback -->
28 <dependency>
29 <groupId>org.slf4j</groupId>
30 <artifactId>slf4j-api</artifactId>
31 <version>${slf4j-api.version}</version>
32 <scope>compile</scope>
33 </dependency>
34 <!-- functional java -->
35 <dependency>
36 <groupId>org.functionaljava</groupId>
37 <artifactId>functionaljava</artifactId>
38 <version>${functionaljava.version}</version>
39 <scope>compile</scope>
40 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020041 </dependencies>
42
Michael Lando451a3402017-02-19 10:28:42 +020043</project>