Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 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 | <artifactId>openecomp-sdc-action-manager</artifactId> |
| 8 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 9 | <parent> |
| 10 | <groupId>org.openecomp.sdc</groupId> |
| 11 | <artifactId>backend</artifactId> |
Michael Lando | ebd7c8f | 2017-03-15 20:38:00 +0200 | [diff] [blame] | 12 | <version>1.1.0-SNAPSHOT</version> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 13 | <relativePath>..</relativePath> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 14 | </parent> |
| 15 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 16 | <build> |
| 17 | <plugins> |
| 18 | <plugin> |
| 19 | <groupId>org.apache.maven.plugins</groupId> |
| 20 | <artifactId>maven-surefire-plugin</artifactId> |
| 21 | <version>2.12.4</version> |
| 22 | <configuration> |
| 23 | <skipTests>true</skipTests> |
| 24 | </configuration> |
| 25 | </plugin> |
| 26 | </plugins> |
| 27 | </build> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 28 | |
| 29 | <dependencies> |
| 30 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame^] | 31 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 32 | <artifactId>openecomp-utilities-lib</artifactId> |
| 33 | <version>${project.version}</version> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.openecomp.sdc</groupId> |
| 37 | <artifactId>openecomp-sdc-validation-core</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame^] | 41 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 42 | <artifactId>openecomp-nosqldb-core</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.testng</groupId> |
| 47 | <artifactId>testng</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 48 | <version>${testng.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 49 | <scope>test</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>junit</groupId> |
| 53 | <artifactId>junit</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 54 | <version>${junit.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 55 | <scope>test</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 59 | <artifactId>jackson-dataformat-xml</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 60 | <version>${jackson.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.codehaus.woodstox</groupId> |
| 64 | <artifactId>woodstox-core-asl</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 65 | <version>${woodstox.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.openecomp.sdc</groupId> |
| 69 | <artifactId>openecomp-sdc-action-core</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.openecomp.sdc</groupId> |
| 74 | <artifactId>openecomp-sdc-versioning-core</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 78 | <groupId>org.openecomp.sdc</groupId> |
| 79 | <artifactId>openecomp-sdc-logging-api</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 80 | <version>${project.version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 83 | <groupId>org.openecomp.sdc</groupId> |
| 84 | <artifactId>openecomp-sdc-logging-core</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 85 | <version>${project.version}</version> |
| 86 | </dependency> |
| 87 | </dependencies> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 88 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 89 | |
| 90 | </project> |