diff options
author | talasila <talasila@research.att.com> | 2017-02-07 11:47:55 -0500 |
---|---|---|
committer | talasila <talasila@research.att.com> | 2017-02-07 12:51:32 -0500 |
commit | 1faf201e8608dfa4d7af3460fd3d1fc7ebec398b (patch) | |
tree | 2208f76271cc6b1a81dbfb9143cd7118b071a909 /ecomp-sdk/thirdparty/pom.xml | |
parent | ca23569858b8cc9f60010e193b7041feb2d3227b (diff) |
Initial OpenECOMP Portal SDK commit
Change-Id: I66a3491600a4b9ea241128dc29267eed6a78ed76
Signed-off-by: talasila <talasila@research.att.com>
Diffstat (limited to 'ecomp-sdk/thirdparty/pom.xml')
-rw-r--r-- | ecomp-sdk/thirdparty/pom.xml | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/ecomp-sdk/thirdparty/pom.xml b/ecomp-sdk/thirdparty/pom.xml new file mode 100644 index 00000000..f98fed21 --- /dev/null +++ b/ecomp-sdk/thirdparty/pom.xml @@ -0,0 +1,93 @@ +<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/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.openecomp.ecompsdkos</groupId> + <artifactId>ecompSDK-project</artifactId> + <version>1.0.0</version> + </parent> + + <!-- GroupId is inherited from parent --> + <artifactId>ecompFW</artifactId> + <!-- Version is inherited from parent --> + <packaging>jar</packaging> + <name>Ecomp Portal Framework (thirdparty)</name> + + <!-- properties are inherited from parent --> + + <!-- repositories are inherited from parent --> + + <!-- profiles are inherited from parent --> + + <build> + + <resources> + <resource> + <directory>src/main/java</directory> + <includes> + <include>**/portal*.properties</include> + </includes> + </resource> + </resources> + + <plugins> + + <!-- some plugins inherited from parent --> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>2.6</version> + <configuration> + <excludes> + <exclude>**/com/att/fusion/core/onboarding/client/*</exclude> + </excludes> + <archive> + <manifestEntries> + <archive-version>${project.version}</archive-version> + <internal-version>${sdk-internal.version}</internal-version> + </manifestEntries> + </archive> + </configuration> + </plugin> + + </plugins> + + </build> + + <dependencies> + + + <!-- publicly available --> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <version>3.0.1</version> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.2</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + <version>2.6.3</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.6.3</version> + </dependency> + + <!-- UEB was originally named Cambria --> + <dependency> + <groupId>com.att.nsa</groupId> + <artifactId>cambriaClient</artifactId> + <version>0.0.1</version> + </dependency> + + + </dependencies> + +</project> |