diff options
author | Rob Daugherty <rd472p@att.com> | 2017-08-04 15:55:54 -0400 |
---|---|---|
committer | Rob Daugherty <rd472p@att.com> | 2017-08-04 15:59:59 -0400 |
commit | 26419357673caa3eb5ca3a64f64e6994d7e7e64f (patch) | |
tree | 2b0ebfee3eb89397cd66d5499407aac05d13e8c8 /packages/pom.xml | |
parent | 9de3ce07e6b287c48c2c2d52a84534ed48932579 (diff) |
Another attempt to fix deploy problem
The top level pom will contain:
<groupId>org.openecomp.so</groupId>
<artifactId>so</artifactId>
Child modules will contain:
<parent>
<groupId>org.openecomp.so</groupId>
<artifactId>so</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<groupId>org.openecomp.so</groupId>
<artifactId>some-child-artifact</artifactId>
Note that the groupId for the direct child module will be
the same as the groupId for its parent.
Issue: SO-21
Change-Id: I1976819df459d92937c6a4780959c32599dc3e71
Signed-off-by: Rob Daugherty <rd472p@att.com>
Diffstat (limited to 'packages/pom.xml')
-rw-r--r-- | packages/pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/pom.xml b/packages/pom.xml index 19d5ed670c..e632f82d62 100644 --- a/packages/pom.xml +++ b/packages/pom.xml @@ -3,7 +3,7 @@ <modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.openecomp.so</groupId>
- <artifactId>so-parent</artifactId>
+ <artifactId>so</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
|