blob: 74567657fe69b78a540fb125041f85c266ac3656 [file] [log] [blame]
talasila0ff0e9f2017-02-15 17:36:47 -05001<?xml version="1.0" encoding="UTF-8"?>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
talasila0ff0e9f2017-02-15 17:36:47 -05004 <modelVersion>4.0.0</modelVersion>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -04005
Gary Wu3c795552017-10-02 11:20:39 -07006 <parent>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -04007 <groupId>org.onap.oparent</groupId>
8 <artifactId>oparent</artifactId>
9 <version>0.1.1</version>
10 <relativePath />
Gary Wu3c795552017-10-02 11:20:39 -070011 </parent>
Christopher Lott (cl778h)de8b8df2017-09-28 16:59:17 -040012
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040013 <groupId>org.onap.portal</groupId>
14 <artifactId>onap-portal-parent</artifactId>
Christopher Lott (cl778h)0bb15c12017-09-29 14:51:47 -040015 <version>1.3.0</version>
talasila0ff0e9f2017-02-15 17:36:47 -050016 <packaging>pom</packaging>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -040017 <name>portal</name>
st782sb54df0d2017-05-04 07:48:42 -040018
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040019 <modules>
20 <!-- This parent POM names only ONAP projects -->
st782sb54df0d2017-05-04 07:48:42 -040021 <module>ecomp-portal-BE-common</module>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040022 <module>ecomp-portal-BE-os</module>
st782sb54df0d2017-05-04 07:48:42 -040023 <module>ecomp-portal-FE-os</module>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -040024 <module>ecomp-portal-widget-ms</module>
talasila0ff0e9f2017-02-15 17:36:47 -050025 </modules>
Andrew Grimberge7a418d2017-03-29 10:26:41 -070026
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040027 <properties>
28 <!-- Jenkins SHOULD invoke mvn with argument -Dbuild.number=${BUILD_NUMBER} -->
29 <build.number>0</build.number>
30 <epsdk.version>1.3.0</epsdk.version>
31 <springframework.version>4.2.0.RELEASE</springframework.version>
32 <hibernate.version>4.3.11.Final</hibernate.version>
33 <fasterxml.version>2.7.4</fasterxml.version>
34 <eelf.version>1.0.0</eelf.version>
Christopher Lott (cl778h)de8b8df2017-09-28 16:59:17 -040035 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040036 <encoding>UTF-8</encoding>
Gary Wu3c795552017-10-02 11:20:39 -070037 <sonar.exclusions>**/scripts/**/*,**.js</sonar.exclusions>
38 <sonar.test.exclusions>**/test/**/*,**/tests/**/*</sonar.test.exclusions>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040039 </properties>
40
Christopher Lott (cl778h)de8b8df2017-09-28 16:59:17 -040041 <!-- Specify the repositories here to avoid coordination of ~/.m2/settings.xml
42 files among all developers. Also use values (not properties) so oparent can
43 be resolved. -->
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040044 <repositories>
45 <repository>
46 <id>onap-releases</id>
47 <name>ONAP - Release Repository</name>
48 <url>https://nexus.onap.org/content/repositories/releases</url>
49 </repository>
50 <repository>
51 <id>onap-staging</id>
52 <name>ONAP - Staging Repository</name>
53 <url>https://nexus.onap.org/content/repositories/staging</url>
54 </repository>
55 <repository>
56 <id>onap-snapshots</id>
57 <name>ONAP - Snapshot Repository</name>
58 <url>https://nexus.onap.org/content/repositories/snapshots</url>
59 </repository>
60 <repository>
61 <id>onap-public</id>
62 <url>https://nexus.onap.org/content/groups/public</url>
63 </repository>
64 </repositories>
65
Christopher Lott (cl778h)de8b8df2017-09-28 16:59:17 -040066 <!-- Specify the repositories here to avoid coordination of ~/.m2/settings.xml
67 files among all developers. -->
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040068 <pluginRepositories>
69 <pluginRepository>
70 <id>onap-plugin-release</id>
71 <url>https://nexus.onap.org/content/repositories/releases/</url>
72 </pluginRepository>
73 <pluginRepository>
74 <id>onap-plugin-staging</id>
75 <url>https://nexus.onap.org/content/repositories/staging/</url>
76 </pluginRepository>
77 <pluginRepository>
78 <id>onap-plugin-snapshots</id>
79 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
80 </pluginRepository>
81 </pluginRepositories>
82
83 <profiles>
84 <!-- disable doclint, a new feature in Java 8, when generating javadoc -->
85 <profile>
86 <id>doclint-java8-disable</id>
87 <activation>
88 <jdk>[1.8,)</jdk>
89 </activation>
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-javadoc-plugin</artifactId>
95 <version>3.0.0-M1</version>
96 <configuration>
97 <additionalparam>-Xdoclint:none</additionalparam>
98 </configuration>
99 </plugin>
100 </plugins>
101 </build>
102 </profile>
103
104 </profiles>
105
Christopher Lott (cl778h)d332e892017-07-12 16:26:42 -0400106 <build>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400107 <pluginManagement>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400108 <plugins>
Christopher Lott (cl778h)de8b8df2017-09-28 16:59:17 -0400109 <!-- Silence Eclipse m2e warnings -->
110 <plugin>
111 <groupId>org.eclipse.m2e</groupId>
112 <artifactId>lifecycle-mapping</artifactId>
113 <version>1.0.0</version>
114 <configuration>
115 <lifecycleMappingMetadata>
116 <pluginExecutions>
117 <pluginExecution>
118 <pluginExecutionFilter>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-checkstyle-plugin</artifactId>
121 <versionRange>2.17,)</versionRange>
122 <goals>
123 <goal>check</goal>
124 </goals>
125 </pluginExecutionFilter>
126 <action>
127 <ignore />
128 </action>
129 </pluginExecution>
130 </pluginExecutions>
131 </lifecycleMappingMetadata>
132 </configuration>
133 </plugin>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400134 <plugin>
135 <artifactId>maven-compiler-plugin</artifactId>
136 <version>3.1</version>
137 <configuration>
138 <source>1.8</source>
139 <target>1.8</target>
140 </configuration>
141 </plugin>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400142 </plugins>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400143 </pluginManagement>
Christopher Lott (cl778h)d332e892017-07-12 16:26:42 -0400144 <plugins>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400145 <!-- No deployment step for this project -->
146 <plugin>
147 <groupId>org.apache.maven.plugins</groupId>
148 <artifactId>maven-deploy-plugin</artifactId>
149 <version>2.8</version>
150 <configuration>
151 <skip>true</skip>
152 </configuration>
153 </plugin>
154 </plugins>
155 </build>
156
157 <distributionManagement>
Christopher Lott (cl778h)0bb15c12017-09-29 14:51:47 -0400158 <!-- oparent.version defines snapshot and release repositories -->
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400159 <site>
160 <id>ecomp-site</id>
Christopher Lott (cl778h)0bb15c12017-09-29 14:51:47 -0400161 <url>dav:https://nexus.onap.org/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</url>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400162 </site>
163 </distributionManagement>
164
165</project>