diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-24 10:48:50 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-24 10:48:51 +0800 |
commit | 094dd6840bfa4cebc120b0735797ff3617371296 (patch) | |
tree | e287398de45e02b3e535dc6ab5b58100a13102f5 /pom.xml | |
parent | f63ac5da45f5e99f2034cbadbc79cc466e9f28eb (diff) |
modify usecase-ui pom files
Change-Id: Ic45a790160522047e6dbcf868a7fcf0363008c49
Issue-ID: USECASEUI-259
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 115 |
1 files changed, 9 insertions, 106 deletions
@@ -16,7 +16,6 @@ --> <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"> <modelVersion>4.0.0</modelVersion> - <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> @@ -25,23 +24,25 @@ </parent> <groupId>org.onap.usecase-ui</groupId> - <artifactId>usecase-ui</artifactId> - <version>2.0.1</version> + <artifactId>usecase-ui-parent</artifactId> + <version>2.0.1-SNAPSHOT</version> <packaging>pom</packaging> - <name>usecase-ui</name> + <name>usecase-ui-parent</name> + <description>parent project for usecase-ui</description> <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <sonar.projectVersion>${project.version}</sonar.projectVersion> <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format> <nexusproxy>https://nexus.onap.org</nexusproxy> - <releaseNexusPath>content/repositories/releases/</releaseNexusPath> <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> - <publicNexusPath>content/repositories/public/</publicNexusPath> + <releaseNexusPath>content/repositories/releases/</releaseNexusPath> <siteNexusPath>content/sites/site/${project.groupId}/${project.artifactId}/${project.version}/</siteNexusPath> <tomcat.version>9.0.19</tomcat.version> </properties> - <distributionManagement> + <!--distributionManagement> <repository> <id>onap-releases</id> <url>${nexusproxy}/${releaseNexusPath}</url> @@ -54,59 +55,7 @@ <id>onap-site</id> <url>dav:${nexusproxy}${siteNexusPath}</url> </site> - </distributionManagement> - - <!-- Specify the repositories here to avoid coordination of ~/.m2/settings.xml - files among developers. Use values (not properties) so oparent can be resolved. --> - <repositories> - <repository> - <id>onap-public</id> - <url>${nexusproxy}/${publicNexusPath}</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - <repository> - <id>onap-releases</id> - <url>${nexusproxy}/${releaseNexusPath}</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - <repository> - <id>onap-snapshots</id> - <url>${nexusproxy}/${snapshotNexusPath}</url> - <releases> - <enabled>false</enabled> - </releases> - </repository> - </repositories> - - <!-- Specify the repositories here to avoid coordination of ~/.m2/settings.xml - files among all developers. --> - <pluginRepositories> - <pluginRepository> - <id>onap-plugin-public</id> - <url>${nexusproxy}/${publicNexusPath}</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </pluginRepository> - <pluginRepository> - <id>onap-plugin-release</id> - <url>${nexusproxy}/${releaseNexusPath}</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </pluginRepository> - <pluginRepository> - <id>onap-plugin-snapshots</id> - <url>${nexusproxy}/${snapshotNexusPath}</url> - <releases> - <enabled>false</enabled> - </releases> - </pluginRepository> - </pluginRepositories> + </distributionManagement--> <modules> <!-- @@ -128,50 +77,4 @@ </dependency> </dependencies> </dependencyManagement> - - <build> - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - <version>2.10</version> - </plugin> - <plugin> - <artifactId>maven-antrun-plugin</artifactId> - <version>1.8</version> - </plugin> - </plugins> - </pluginManagement> - <plugins> - <plugin> - <groupId>org.sonatype.plugins</groupId> - <artifactId>nexus-staging-maven-plugin</artifactId> - <version>1.6.7</version> - <extensions>true</extensions> - <configuration> - <nexusUrl>${nexusproxy}</nexusUrl> - <stagingProfileId>176c31dfe190a</stagingProfileId> - <serverId>ecomp-staging</serverId> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.3</version> - <configuration> - <source>1.8</source> - <target>1.8</target> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <version>2.8</version> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> </project> |