andre.schmid | a80a2e2 | 2019-10-10 17:39:03 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 4 | |
andre.schmid | a80a2e2 | 2019-10-10 17:39:03 +0100 | [diff] [blame] | 5 | <modelVersion>4.0.0</modelVersion> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 6 | |
andre.schmid | a80a2e2 | 2019-10-10 17:39:03 +0100 | [diff] [blame] | 7 | <groupId>org.openecomp.sdc.core</groupId> |
| 8 | <name>openecomp-common-lib</name> |
| 9 | <artifactId>openecomp-common-lib</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 10 | |
andre.schmid | a80a2e2 | 2019-10-10 17:39:03 +0100 | [diff] [blame] | 11 | <parent> |
| 12 | <artifactId>openecomp-sdc-lib</artifactId> |
| 13 | <groupId>org.openecomp.sdc</groupId> |
Ofir Sonsino | 09d8789 | 2020-03-12 20:52:42 +0200 | [diff] [blame] | 14 | <version>1.7.0-SNAPSHOT</version> |
andre.schmid | a80a2e2 | 2019-10-10 17:39:03 +0100 | [diff] [blame] | 15 | </parent> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 16 | |
andre.schmid | a80a2e2 | 2019-10-10 17:39:03 +0100 | [diff] [blame] | 17 | <dependencies> |
| 18 | <dependency> |
| 19 | <groupId>org.openecomp.sdc.core</groupId> |
| 20 | <artifactId>openecomp-utilities-lib</artifactId> |
| 21 | <version>${project.version}</version> |
| 22 | </dependency> |
| 23 | <dependency> |
| 24 | <groupId>org.openecomp.sdc</groupId> |
| 25 | <artifactId>openecomp-sdc-datatypes-lib</artifactId> |
| 26 | <version>${project.version}</version> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>javax.ws.rs</groupId> |
| 30 | <artifactId>javax.ws.rs-api</artifactId> |
| 31 | <scope>provided</scope> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>ch.qos.logback</groupId> |
| 35 | <artifactId>logback-classic</artifactId> |
| 36 | <scope>runtime</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>commons-io</groupId> |
| 40 | <artifactId>commons-io</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.apache.commons</groupId> |
| 44 | <artifactId>commons-lang3</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.apache.commons</groupId> |
| 48 | <artifactId>commons-text</artifactId> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>com.fasterxml.jackson.core</groupId> |
| 52 | <artifactId>jackson-core</artifactId> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>com.fasterxml.jackson.core</groupId> |
| 56 | <artifactId>jackson-databind</artifactId> |
vasraz | ca685bb | 2020-06-11 17:05:29 +0100 | [diff] [blame] | 57 | <exclusions> |
| 58 | <exclusion> |
| 59 | <groupId>com.fasterxml.jackson.core</groupId> |
| 60 | <artifactId>jackson-core</artifactId> |
| 61 | </exclusion> |
| 62 | </exclusions> |
andre.schmid | a80a2e2 | 2019-10-10 17:39:03 +0100 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>com.amdocs.zusammen</groupId> |
| 66 | <artifactId>zusammen-datatypes</artifactId> |
| 67 | <version>${zusammen.version}</version> |
| 68 | </dependency> |
| 69 | <dependency> |
andre.schmid | a80a2e2 | 2019-10-10 17:39:03 +0100 | [diff] [blame] | 70 | <groupId>org.projectlombok</groupId> |
| 71 | <artifactId>lombok</artifactId> |
| 72 | </dependency> |
| 73 | </dependencies> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 74 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 75 | </project> |