blob: d039caf936a63e533e5d519cb12f6fa3c7845c06 [file] [log] [blame]
Stone, Avi (as206k)eaf57062018-04-12 15:57:26 +03001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>org.onap.sdc.dcae-ci-tests</groupId>
5 <artifactId>dcae-ci-tests</artifactId>
6 <version>1806.0.1-SNAPSHOT</version>
7 <name>DCAE Tests</name>
8 <packaging>jar</packaging>
9 <description>Tests for DCAE Designer </description>
10
11 <properties>
12 <maven.compiler.source>1.8</maven.compiler.source>
13 <maven.compiler.target>1.8</maven.compiler.target>
14 </properties>
15
16 <dependencies>
17
18 <dependency>
19 <groupId>org.openecomp.d2</groupId>
20 <artifactId>ui-api-ci</artifactId>
21 <version>1.0.1-SNAPSHOT</version>
22 </dependency>
23
24
25 <dependency>
26 <groupId>org.assertj</groupId>
27 <artifactId>assertj-core</artifactId>
28 <version>3.8.0</version>
29 <scope>compile</scope>
30 </dependency>
31
32 <dependency>
33 <groupId>org.onap.sdc.dcae.property</groupId>
34 <artifactId>DCAE-DT-PROPERTY</artifactId>
35 <version>${project.version}</version>
36 </dependency>
37 </dependencies>
38
39 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-assembly-plugin</artifactId>
44 <version>2.5.5</version>
45 <executions>
46 <execution>
47 <id>create.jar.with.dependencies</id>
48 <phase>package</phase>
49 <goals>
50 <goal>single</goal>
51 </goals>
52 <configuration>
53 <archive>
54 <manifest>
55 <mainClass>com.att.ecomp.dcae.ci.run.RunTestSuite</mainClass>
56 </manifest>
57 </archive>
58 <descriptorRefs>
59 <descriptorRef>jar-with-dependencies</descriptorRef>
60 </descriptorRefs>
61 </configuration>
62 </execution>
63 </executions>
64 </plugin>
65 </plugins>
66 </build>
67
68 <repositories>
69 <repository>
70 <id>nexus</id>
71 <name>2020</name>
72 <url>http://mavencentral.it.att.com:8084/nexus/content/groups/2020SAPC/</url>
73 <layout>default</layout>
74 </repository>
75
76 <repository>
77 <id>ATT public</id>
78 <name>ATT public</name>
79 <url>http://mavencentral.it.att.com:8084/nexus/content/groups/att-public-group/</url>
80 <layout>default</layout>
81 </repository>
82
83 </repositories>
84
85</project>