AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <name>openecomp-sdc-translator-impl</name> |
| 7 | <artifactId>openecomp-sdc-translator-impl</artifactId> |
| 8 | |
| 9 | |
| 10 | <parent> |
| 11 | <groupId>org.openecomp.sdc</groupId> |
| 12 | <artifactId>openecomp-sdc-lib</artifactId> |
| 13 | <version>1.1.0-SNAPSHOT</version> |
| 14 | <relativePath>../..</relativePath> |
| 15 | </parent> |
| 16 | |
| 17 | <dependencies> |
| 18 | <dependency> |
| 19 | <groupId>ch.qos.logback</groupId> |
| 20 | <artifactId>logback-classic</artifactId> |
| 21 | <version>${logback.version}</version> |
| 22 | </dependency> |
| 23 | <dependency> |
| 24 | <groupId>junit</groupId> |
| 25 | <artifactId>junit</artifactId> |
| 26 | <version>${junit.version}</version> |
| 27 | <scope>test</scope> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.openecomp.sdc</groupId> |
| 31 | <artifactId>openecomp-sdc-translator-api</artifactId> |
| 32 | <version>${project.version}</version> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>org.openecomp.core</groupId> |
| 36 | <artifactId>openecomp-heat-lib</artifactId> |
| 37 | <version>${project.version}</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.openecomp.core</groupId> |
| 41 | <artifactId>openecomp-tosca-lib</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | <!-- need to be changed to sdk --> |
| 45 | <dependency> |
| 46 | <groupId>org.openecomp.sdc</groupId> |
| 47 | <artifactId>openecomp-sdc-translator-core</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | </dependencies> |
| 51 | <build> |
| 52 | <plugins> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-surefire-plugin</artifactId> |
| 56 | <version>${mvn.surefire.version}</version> |
| 57 | <configuration> |
| 58 | <useSystemClassLoader>false</useSystemClassLoader> |
| 59 | <systemPropertyVariables> |
| 60 | <config.location>${project.basedir}/configuration</config.location> |
| 61 | </systemPropertyVariables> |
| 62 | </configuration> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | </project> |