summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorKajur, Harish (vk250x) <vk250x@att.com>2018-08-10 12:42:00 -0400
committerKajur, Harish (vk250x) <vk250x@att.com>2018-08-12 16:48:34 -0400
commita86d6a6644d6de3f3f814cd6e25cfe2213d5dd05 (patch)
tree9935a64d7f830ebedf2742e0febef40e898cea91 /pom.xml
parenta395fa69a28a04d0a667fe458b4f10497a1d6794 (diff)
Integrate aai-schema-ingest library into aai-core
Integrate the aai-core into using the aai-schema-ingest library to be agnostic to the schema changes Remove any references to aai-schema dependency in aai-core Reorder the components so the aai-schema-ingest is first installed Moved the edge rules to the aai-schema as they are linked to schema Rework the generation of the aai-schema to using aai-schema-ingest library Also remove the yaml and html folders as they get generated on the fly So when maven pushes the aai-schema jar, the jar contains the generated yaml, html and xsd files at runtime due to the gerrit limit of filesize Issue-ID: AAI-1455 Change-Id: I87ecd9eb2fc96a09d3a6399955637674f6e7fb21 Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml19
1 files changed, 18 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index d1c24d37..2e156474 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,15 +36,16 @@
<description>Contains all of the common code for resources and traversal repos</description>
<modules>
- <module>aai-schema</module>
<module>aai-schema-ingest</module>
<module>aai-annotations</module>
<module>aai-core</module>
+ <module>aai-schema</module>
<module>aai-auth</module>
<module>aai-utils</module>
</modules>
<properties>
+ <aai.generate.schema>true</aai.generate.schema>
<sitePath>/content/sites/site/org/onap/aai/aai-common/${project.artifactId}/${project.version}</sitePath>
<onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
</properties>
@@ -62,6 +63,20 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>3.0.1</version>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>deploy</phase>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<executions>
@@ -185,6 +200,7 @@
</plugins>
</reporting>
+ <!-- Start of ONAP Specific Repositories -->
<repositories>
<repository>
<id>AJSC</id>
@@ -218,4 +234,5 @@
<url>${onap.nexus.url}/content/repositories/snapshots/</url>
</repository>
</repositories>
+ <!-- End of ONAP Specific Repositories -->
</project>