Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 7 | <groupId>org.openecomp.sdc</groupId> |
| 8 | <artifactId>openecomp-sdc-application-config-manager</artifactId> |
| 9 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 10 | <parent> |
| 11 | <groupId>org.openecomp.sdc</groupId> |
| 12 | <artifactId>backend</artifactId> |
Michael Lando | ebd7c8f | 2017-03-15 20:38:00 +0200 | [diff] [blame] | 13 | <version>1.1.0-SNAPSHOT</version> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 14 | <relativePath>..</relativePath> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 15 | </parent> |
| 16 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 17 | <build> |
| 18 | <plugins> |
| 19 | <plugin> |
| 20 | <groupId>org.apache.maven.plugins</groupId> |
| 21 | <artifactId>maven-surefire-plugin</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 22 | <version>2.12.4</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 23 | <configuration> |
| 24 | <skipTests>true</skipTests> |
| 25 | </configuration> |
| 26 | </plugin> |
| 27 | </plugins> |
| 28 | </build> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 29 | |
| 30 | <dependencies> |
| 31 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 32 | <groupId>org.openecomp.sdc.core</groupId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 33 | <artifactId>openecomp-config-lib</artifactId> |
| 34 | <version>${project.version}</version> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.testng</groupId> |
| 38 | <artifactId>testng</artifactId> |
| 39 | <version>${testng.version}</version> |
| 40 | <scope>test</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.openecomp.sdc</groupId> |
| 44 | <artifactId>openecomp-sdc-logging-core</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | </dependencies> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 48 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 49 | </project> |