sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 1 | <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"> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 4 | |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <artifactId>activity-spec-service</artifactId> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 8 | |
| 9 | <parent> |
sheetalm | 894285b | 2018-04-12 13:20:36 +0530 | [diff] [blame] | 10 | <groupId>org.onap.sdc.activityspec</groupId> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 11 | <artifactId>activity-spec</artifactId> |
Michael Lando | d8a0dea | 2018-06-02 19:23:27 +0300 | [diff] [blame] | 12 | <version>1.3.0-SNAPSHOT</version> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 13 | <relativePath>../..</relativePath> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 14 | </parent> |
| 15 | |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 16 | <properties> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 17 | <!-- TODO: Is it required --> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 18 | <errorcode.dir>${project.build.directory}/generated-sources/error-codes</errorcode.dir> |
| 19 | </properties> |
| 20 | |
| 21 | <dependencies> |
| 22 | <!--Cannot remove this dependency since it is being used in mappers as of now --> |
| 23 | <dependency> |
| 24 | <groupId>org.openecomp.sdc</groupId> |
| 25 | <artifactId>openecomp-sdc-common-rest</artifactId> |
| 26 | <version>${project.version}</version> |
| 27 | </dependency> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 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> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 34 | <dependency> |
| 35 | <groupId>org.openecomp.sdc</groupId> |
| 36 | <artifactId>openecomp-sdc-versioning-core</artifactId> |
| 37 | <version>${project.version}</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.openecomp.sdc.core</groupId> |
| 41 | <artifactId>openecomp-zusammen-api</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.openecomp.sdc.core</groupId> |
| 46 | <artifactId>openecomp-zusammen-core</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | <scope>runtime</scope> |
| 49 | </dependency> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 50 | <dependency> |
sheetalm | 450c94f | 2018-04-04 15:06:18 +0530 | [diff] [blame] | 51 | <groupId>org.openecomp.sdc</groupId> |
| 52 | <artifactId>openecomp-sdc-logging-core</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | <scope>runtime</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 57 | <groupId>org.codehaus.jackson</groupId> |
| 58 | <artifactId>jackson-jaxrs</artifactId> |
| 59 | <version>${org.codehaus.jackson.version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.springframework</groupId> |
| 63 | <artifactId>spring-context</artifactId> |
| 64 | <version>${spring.framework.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.springframework</groupId> |
| 68 | <artifactId>spring-web</artifactId> |
| 69 | <version>${spring.framework.version}</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.springframework</groupId> |
| 73 | <artifactId>spring-webmvc</artifactId> |
| 74 | <version>${spring.framework.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.projectlombok</groupId> |
| 78 | <artifactId>lombok</artifactId> |
| 79 | </dependency> |
sheetalm | 450c94f | 2018-04-04 15:06:18 +0530 | [diff] [blame] | 80 | <dependency> |
| 81 | <groupId>ch.qos.logback</groupId> |
| 82 | <artifactId>logback-classic</artifactId> |
| 83 | <version>1.2.3</version> |
| 84 | <scope>runtime</scope> |
| 85 | </dependency> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 86 | </dependencies> |
| 87 | |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 88 | </project> |