Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [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 | |
| 7 | <parent> |
| 8 | <groupId>org.openecomp.sdc</groupId> |
| 9 | <artifactId>backend</artifactId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 10 | <version>1.2.0-SNAPSHOT</version> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <artifactId>openecomp-sdc-healthcheck-manager</artifactId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 14 | <version>1.2.0-SNAPSHOT</version> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>org.openecomp.sdc.core</groupId> |
| 18 | <artifactId>openecomp-utilities-lib</artifactId> |
| 19 | <version>${project.version}</version> |
| 20 | </dependency> |
| 21 | |
| 22 | <dependency> |
| 23 | <groupId>org.openecomp.sdc</groupId> |
| 24 | <artifactId>openecomp-sdc-logging-api</artifactId> |
| 25 | <version>${project.version}</version> |
| 26 | </dependency> |
| 27 | <dependency> |
| 28 | <groupId>org.openecomp.sdc</groupId> |
| 29 | <artifactId>openecomp-sdc-logging-core</artifactId> |
| 30 | <version>${project.version}</version> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>org.openecomp.sdc.core</groupId> |
| 34 | <artifactId>openecomp-facade-core</artifactId> |
| 35 | <version>${project.version}</version> |
| 36 | </dependency> |
| 37 | <dependency> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 38 | <groupId>org.openecomp.sdc.core</groupId> |
| 39 | <artifactId>openecomp-zusammen-core</artifactId> |
| 40 | <version>${project.version}</version> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.mockito</groupId> |
| 44 | <artifactId>mockito-all</artifactId> |
| 45 | <version>1.10.19</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>junit</groupId> |
| 49 | <artifactId>junit</artifactId> |
| 50 | <version>4.12</version> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
| 53 | </dependencies> |
| 54 | <build> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>org.apache.maven.plugins</groupId> |
| 58 | <artifactId>maven-jar-plugin</artifactId> |
vempo | fad94e4 | 2017-09-03 16:35:04 +0300 | [diff] [blame] | 59 | <version>${mvn.jar.version}</version> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 60 | <configuration> |
| 61 | <archive> |
| 62 | <manifest> |
| 63 | <addDefaultImplementationEntries> |
| 64 | true |
| 65 | </addDefaultImplementationEntries> |
| 66 | </manifest> |
| 67 | </archive> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | </plugins> |
| 71 | </build> |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 72 | </project> |