diff options
author | vempo <vitaliy.emporopulo@amdocs.com> | 2018-11-06 18:41:14 +0200 |
---|---|---|
committer | Oren Kleks <orenkle@amdocs.com> | 2018-11-07 07:17:04 +0000 |
commit | a706d714e2d0f308abe6fea01f091a1c5a1fe5ee (patch) | |
tree | 9b9725eecceb33f5a0350bb4e60d633810a5beb3 /onboarding/pom.xml | |
parent | fbb90d54a0630768c71b4b62dd5f88235f1c7537 (diff) |
Removed compile-helper-plugin
Change-Id: I4d10879ac3195e25b8a2c97776c59241a25338a8
Issue-ID: SDC-1861
Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'onboarding/pom.xml')
-rw-r--r-- | onboarding/pom.xml | 51 |
1 files changed, 18 insertions, 33 deletions
diff --git a/onboarding/pom.xml b/onboarding/pom.xml index 847bf28f50..f76251de25 100644 --- a/onboarding/pom.xml +++ b/onboarding/pom.xml @@ -1,3 +1,19 @@ +<!-- + ~ Copyright © 2016-2018 European Support Limited + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> @@ -14,7 +30,6 @@ </parent> <modules> - <module>../openecomp-be/tools/compile-helper-plugin</module> <module>../common</module> <module>../openecomp-be</module> <module>../openecomp-ui</module> @@ -23,6 +38,8 @@ <properties> <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.targer>1.8</maven.compiler.targer> <jacoco.skip>true</jacoco.skip> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -74,8 +91,6 @@ <httpasyncclient.version>4.1.2</httpasyncclient.version> <janino.version>2.7.7</janino.version> <jaxb.impl.version>2.2.11</jaxb.impl.version> - <java.source>1.8</java.source> - <java.target>1.8</java.target> <javax.el.version>2.2.4</javax.el.version> <javax.el-api.version>3.0.1-b04</javax.el-api.version> <javax.inject.version>1</javax.inject.version> @@ -308,34 +323,11 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${mvn.jar.version}</version> - <executions> - <execution> - <goals> - <goal>test-jar</goal> - </goals> - <phase>none</phase> - </execution> - </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>${mvn.clean.version}</version> - <configuration> - <excludeDefaultDirectories>true</excludeDefaultDirectories> - <filesets> - <fileset> - <directory>${project.build.directory}</directory> - <excludes> - <exclude>${classes}</exclude> - <exclude>${testClasses}</exclude> - <exclude>${mavenStatus}</exclude> - <exclude>${customGeneratedSources}</exclude> - <exclude>build-data/**</exclude> - </excludes> - </fileset> - </filesets> - </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -356,24 +348,17 @@ <config.location>${project.basedir}/configuration</config.location> </systemPropertyVariables> <useSystemClassLoader>${useSystemClassLoader}</useSystemClassLoader> - <skip>${skipTestRun}</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>${mvn.install.version}</version> - <configuration> - <skip>${skipInstall}</skip> - </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${mvn.resource.version}</version> - <configuration> - <skip>${skipResourceCollection}</skip> - </configuration> </plugin> </plugins> <testResources> |