diff options
author | Dmitry Puzikov <dmitry.puzikov@tieto.com> | 2019-08-29 11:49:09 +0200 |
---|---|---|
committer | Dmitry Puzikov <dmitry.puzikov@tieto.com> | 2019-08-29 11:49:09 +0200 |
commit | 8c9c7b61a0f984a92dfcc3b12d66c97bb5800f86 (patch) | |
tree | 3da459b69ee8ee6bca8cc7f7eb8ce6a5d86677e0 | |
parent | 64dce898886778537062914c40b4be6e4c49999b (diff) |
Fix project version parsing
Change-Id: I4733b72bb1d150203de764e06eefb39c75b5c300
Issue-ID: INT-803
Signed-off-by: Dmitry Puzikov <dmitry.puzikov@tieto.com>
-rw-r--r-- | aai-schema-service/pom.xml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/aai-schema-service/pom.xml b/aai-schema-service/pom.xml index 5424e36..a0d621d 100644 --- a/aai-schema-service/pom.xml +++ b/aai-schema-service/pom.xml @@ -90,8 +90,10 @@ <!-- Start of Default ONAP Schema Properties --> <schema.source.name>onap</schema.source.name> <schema.configuration.location>N/A</schema.configuration.location> - <schema.nodes.location>${project.basedir}/src/main/resources/schema/${schema.source.name}/oxm</schema.nodes.location> - <schema.edges.location>${project.basedir}/src/main/resources/schema/${schema.source.name}/dbedgerules</schema.edges.location> + <schema.nodes.location>${project.basedir}/src/main/resources/schema/${schema.source.name}/oxm + </schema.nodes.location> + <schema.edges.location>${project.basedir}/src/main/resources/schema/${schema.source.name}/dbedgerules + </schema.edges.location> <schema.version.depth.start>v10</schema.version.depth.start> <schema.version.related.link.start>v10</schema.version.related.link.start> <schema.version.app.root.start>v11</schema.version.app.root.start> @@ -113,10 +115,13 @@ <plugin> <groupId>org.codehaus.groovy.maven</groupId> <artifactId>gmaven-plugin</artifactId> - <version>1.0</version> <executions> <execution> - <phase>prepare-package</phase> + <phase>pre-clean</phase> + </execution> + <execution> + <id>parse-base</id> + <phase>pre-clean</phase> <goals> <goal>execute</goal> </goals> |