blob: 13d0268fdec40c3a6c88f2eb1aeca8b4a092ebdc [file] [log] [blame]
sheetalm297209b2018-02-20 19:06:27 +05301<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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 <artifactId>activity-spec-service</artifactId>
7 <name>activity-spec-service</name>
8
9 <parent>
10 <groupId>org.openecomp.activityspec</groupId>
11 <artifactId>activity-spec-web</artifactId>
12 <version>1.2.0-SNAPSHOT</version>
13 </parent>
14
15
16 <properties>
17 <errorcode.dir>${project.build.directory}/generated-sources/error-codes</errorcode.dir>
18 </properties>
19
20 <dependencies>
21 <!--Cannot remove this dependency since it is being used in mappers as of now -->
22 <dependency>
23 <groupId>org.openecomp.sdc</groupId>
24 <artifactId>openecomp-sdc-common-rest</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27 <!-- CXF -->
28 <dependency>
29 <groupId>org.apache.cxf</groupId>
30 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
31 <version>${cxf.version}</version>
32 <scope>runtime</scope>
33 </dependency>
34
35 <!-- Java Stuff -->
36 <dependency>
37 <groupId>org.openecomp.sdc</groupId>
38 <artifactId>openecomp-sdc-versioning-core</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.openecomp.sdc.core</groupId>
43 <artifactId>openecomp-zusammen-api</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.openecomp.sdc.core</groupId>
48 <artifactId>openecomp-zusammen-core</artifactId>
49 <version>${project.version}</version>
50 <scope>runtime</scope>
51 </dependency>
52
53 <dependency>
54 <groupId>org.codehaus.jackson</groupId>
55 <artifactId>jackson-jaxrs</artifactId>
56 <version>${org.codehaus.jackson.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.springframework</groupId>
60 <artifactId>spring-context</artifactId>
61 <version>${spring.framework.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>org.springframework</groupId>
65 <artifactId>spring-web</artifactId>
66 <version>${spring.framework.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>org.springframework</groupId>
70 <artifactId>spring-webmvc</artifactId>
71 <version>${spring.framework.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>org.projectlombok</groupId>
75 <artifactId>lombok</artifactId>
76 </dependency>
77 </dependencies>
78
79 <build>
80 <plugins>
81 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-surefire-plugin</artifactId>
84 <version>${mvn.surefire.version}</version>
85 </plugin>
86 </plugins>
87 </build>
88
89</project>