Exclude javaparser due to license issue 90/110990/1
authorJim Hahn <jrh3@att.com>
Thu, 6 Aug 2020 15:47:40 +0000 (11:47 -0400)
committerJim Hahn <jrh3@att.com>
Thu, 6 Aug 2020 15:49:24 +0000 (11:49 -0400)
javaparser is included indirectly by aai-schema jar.  Modified the
pom to excluded javaparser when including aai-schema jar.  Verified
that models aai code still works and that drools-apps use case tests
still work.

Issue-ID: POLICY-2736
Change-Id: Iba137cf7ee4be6f2e35e3053413a4a9068860823
Signed-off-by: Jim Hahn <jrh3@att.com>
models-interactions/model-impl/aai/pom.xml

index 6873342..e11aefa 100644 (file)
             <groupId>org.onap.aai.schema-service</groupId>
             <artifactId>aai-schema</artifactId>
             <version>1.7.2</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.google.code.javaparser</groupId>
+                    <artifactId>javaparser</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 </project>