diff options
author | Gautam Shah <gautams@amdocs.com> | 2018-04-21 16:18:37 +0530 |
---|---|---|
committer | GAUTAMS <gautams@amdocs.com> | 2018-04-26 17:47:29 +0530 |
commit | 3de22e1c6c2711072ce996335e7250445a39d320 (patch) | |
tree | c7a528bee3166b3262eef9977b0f87923df0e99f /common/openecomp-sdc-artifact-generator-lib/openecomp-sdc-artifact-generator-api | |
parent | d71a8de8c7b688eabb250e524dc4f6000b3233b6 (diff) |
Reducing onboarding backend maven build time
Reducing onboarding backend maven build time
Change-Id: Id0178cbf010e46f741f4bff11e14b0801f14d4b8
Issue-ID: SDC-1189
Signed-off-by: GAUTAMS <gautams@amdocs.com>
Diffstat (limited to 'common/openecomp-sdc-artifact-generator-lib/openecomp-sdc-artifact-generator-api')
-rw-r--r-- | common/openecomp-sdc-artifact-generator-lib/openecomp-sdc-artifact-generator-api/pom.xml | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/common/openecomp-sdc-artifact-generator-lib/openecomp-sdc-artifact-generator-api/pom.xml b/common/openecomp-sdc-artifact-generator-lib/openecomp-sdc-artifact-generator-api/pom.xml index 22a518aa36..ca8f6f8792 100644 --- a/common/openecomp-sdc-artifact-generator-lib/openecomp-sdc-artifact-generator-api/pom.xml +++ b/common/openecomp-sdc-artifact-generator-lib/openecomp-sdc-artifact-generator-api/pom.xml @@ -61,24 +61,6 @@ <artifactId>reflections</artifactId> <version>${org.reflections.version}</version> </dependency> - <dependency> - <groupId>org.testng</groupId> - <artifactId>testng</artifactId> - <scope>test</scope> - <version>6.8.5</version> - <exclusions> - <exclusion> - <artifactId>snakeyaml</artifactId> - <groupId>org.yaml</groupId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - <version>${junit.version}</version> - </dependency> </dependencies> <build> @@ -86,7 +68,7 @@ <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> - <version>${mvn.jaxb2.version}</version> + <version>${mvn.jaxb2.version}</version> <executions> <execution> <phase>generate-sources</phase> @@ -98,7 +80,12 @@ <configuration> <schemaDirectory>src/main/resources</schemaDirectory> <generatePackage>org.openecomp.sdc.generator.aai.xml</generatePackage> - <generateDirectory>target/generated-sources/aai/xml</generateDirectory> + <generateDirectory>target/generated-sources/custom/aai/xml</generateDirectory> + <removeOldOutput>false</removeOldOutput> + <cleanPackageDirectories>true</cleanPackageDirectories> + <forceRegenerate>false</forceRegenerate> + <debug>false</debug> + <verbose>false</verbose> <schemaIncludes> <include>aai_schema_v11.xsd</include> </schemaIncludes> |