diff options
Diffstat (limited to 'standardization/api-custom-header/pom.xml')
-rw-r--r-- | standardization/api-custom-header/pom.xml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/standardization/api-custom-header/pom.xml b/standardization/api-custom-header/pom.xml new file mode 100644 index 00000000..6b00d06c --- /dev/null +++ b/standardization/api-custom-header/pom.xml @@ -0,0 +1,45 @@ +<?xml version="1.0"?> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.onap.dcaegen2.services.sdk</groupId> + <artifactId>dcaegen2-services-sdk-standardization</artifactId> + <version>1.1.3-SNAPSHOT</version> + <relativePath>..</relativePath> + </parent> + + <groupId>org.onap.dcaegen2.services.sdk.standardization</groupId> + <artifactId>api-custom-header</artifactId> + <name>api-custom-header</name> + <packaging>jar</packaging> + + <properties> + <java.version>8</java.version> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <dependencies> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + <dependency> + <groupId>com.google.code.gson</groupId> + <artifactId>gson</artifactId> + <version>2.8.5</version> + </dependency> + <dependency> + <groupId>org.jetbrains</groupId> + <artifactId>annotations</artifactId> + </dependency> + <!-- TESTING --> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <scope>test</scope> + </dependency> + </dependencies> +</project> |