diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-01-24 09:53:56 -0500 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-01-24 13:32:20 -0500 |
commit | a76ceb4fec109c0dc238fb552f03999829d19540 (patch) | |
tree | ec29b716e415f8aa0df2fcfc8ef8772840b8d5a5 /cds-ui/server/pom.xml | |
parent | 76386c3907404bd68ea0459161a2199ab79a5e28 (diff) |
Fixed project structure errors that broke build
Fixed errors in pom.xml that broke build, mostly having to do with
parent tags (or lack thereof).
Change-Id: I8563bbe14e304cd22562b6ea52cc4df2bca0bff1
Issue-ID: CCSDK-1002
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'cds-ui/server/pom.xml')
-rw-r--r-- | cds-ui/server/pom.xml | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/cds-ui/server/pom.xml b/cds-ui/server/pom.xml index 8b9c4218b..bac8b03d2 100644 --- a/cds-ui/server/pom.xml +++ b/cds-ui/server/pom.xml @@ -21,9 +21,17 @@ limitations under the License. <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> + + <parent> + <groupId>org.onap.ccsdk.cds</groupId> + <artifactId>controller-design-studio</artifactId> + <version>1.0.0-SNAPSHOT</version> + <relativePath>../..</relativePath> + </parent> + <groupId>org.onap.ccsdk.cds.server</groupId> <artifactId>controller-design-studio-server</artifactId> - <version>1.0.0</version> + <version>1.0.0-SNAPSHOT</version> <packaging>pom</packaging> <name>cds-ui-server</name> @@ -34,21 +42,6 @@ limitations under the License. <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> </properties> - <!-- ================================================================================== --> - <!-- Distribution Management Sites --> - <!-- ================================================================================== --> - <distributionManagement> - <repository> - <id>ecomp-releases</id> - <name>openecomp-repository-releases</name> - <url>${onap.nexus.url}/content/repositories/releases</url> - </repository> - <snapshotRepository> - <id>ecomp-snapshots</id> - <name>openecomp-repository-snapshots</name> - <url>${onap.nexus.url}/content/repositories/snapshots</url> - </snapshotRepository> - </distributionManagement> <build> |