summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/data-provider/installer
diff options
context:
space:
mode:
authorMichael DÜrre <michael.duerre@highstreet-technologies.com>2021-06-30 08:26:04 +0200
committerMichael DÜrre <michael.duerre@highstreet-technologies.com>2021-06-30 08:26:22 +0200
commitfa0febc0614b1f9afb4be3c5dd3446f4a554a232 (patch)
treed048ac676d1ea48a9cb00afbc84ed668772d0e4a /sdnr/wt/data-provider/installer
parent6360ba16069370151019865c504e1bec1d896e8c (diff)
fix sdnr features startup
source out multiple used yang file due resolving conflict Issue-ID: CCSDK-3359 Signed-off-by: Michael DÜrre <michael.duerre@highstreet-technologies.com> Change-Id: I59d863e43a7e29e98d104d20371226ef59837e61 Signed-off-by: Michael DÜrre <michael.duerre@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt/data-provider/installer')
-rwxr-xr-xsdnr/wt/data-provider/installer/pom.xml30
1 files changed, 3 insertions, 27 deletions
diff --git a/sdnr/wt/data-provider/installer/pom.xml b/sdnr/wt/data-provider/installer/pom.xml
index ee6b2f370..4eda82cde 100755
--- a/sdnr/wt/data-provider/installer/pom.xml
+++ b/sdnr/wt/data-provider/installer/pom.xml
@@ -47,7 +47,7 @@
<dependencies>
<dependency>
- <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
+ <groupId>${project.groupId}</groupId>
<artifactId>${application.name}-feature</artifactId>
<version>${project.version}</version>
<type>xml</type>
@@ -60,12 +60,12 @@
</exclusions>
</dependency>
<dependency>
- <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
+ <groupId>${project.groupId}</groupId>
<artifactId>${application.name}-provider</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
- <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
+ <groupId>${project.groupId}</groupId>
<artifactId>${application.name}-setup</artifactId>
<version>${project.version}</version>
</dependency>
@@ -116,30 +116,6 @@
</execution>
</executions>
</plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-schemas</id>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <phase>validate</phase>
- <configuration>
- <outputDirectory>${project.build.directory}/assembly/cache/schema</outputDirectory>
- <resources>
- <resource>
- <directory>${basedir}/../provider/src/main/resources/preload.cache.schema</directory>
- <includes>
- <include>*.yang</include>
- </includes>
- <filtering>true</filtering>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
</project>