| <project xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <artifactId>activity-spec-service</artifactId> |
| |
| <parent> |
| <groupId>org.onap.sdc.activityspec</groupId> |
| <artifactId>activity-spec</artifactId> |
| <version>1.3.0-SNAPSHOT</version> |
| <relativePath>../..</relativePath> |
| </parent> |
| |
| <properties> |
| <!-- TODO: Is it required --> |
| <errorcode.dir>${project.build.directory}/generated-sources/error-codes</errorcode.dir> |
| </properties> |
| |
| <dependencies> |
| <!--Cannot remove this dependency since it is being used in mappers as of now --> |
| <dependency> |
| <groupId>org.openecomp.sdc</groupId> |
| <artifactId>openecomp-sdc-common-rest</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.cxf</groupId> |
| <artifactId>cxf-rt-frontend-jaxrs</artifactId> |
| <version>${cxf.version}</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.openecomp.sdc</groupId> |
| <artifactId>openecomp-sdc-versioning-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openecomp.sdc.core</groupId> |
| <artifactId>openecomp-zusammen-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openecomp.sdc.core</groupId> |
| <artifactId>openecomp-zusammen-core</artifactId> |
| <version>${project.version}</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.openecomp.sdc</groupId> |
| <artifactId>openecomp-sdc-logging-core</artifactId> |
| <version>${project.version}</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.jackson</groupId> |
| <artifactId>jackson-jaxrs</artifactId> |
| <version>${org.codehaus.jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-context</artifactId> |
| <version>${spring.framework.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-web</artifactId> |
| <version>${spring.framework.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-webmvc</artifactId> |
| <version>${spring.framework.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.projectlombok</groupId> |
| <artifactId>lombok</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| <version>1.2.3</version> |
| <scope>runtime</scope> |
| </dependency> |
| </dependencies> |
| |
| </project> |