Add INFO.yaml file
[aaf/authz.git] / authz-defOrg / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!--\r
3   ============LICENSE_START====================================================\r
4   * org.onap.aaf\r
5   * ===========================================================================\r
6   * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
7   * ===========================================================================\r
8   * Licensed under the Apache License, Version 2.0 (the "License");\r
9   * you may not use this file except in compliance with the License.\r
10   * You may obtain a copy of the License at\r
11   * \r
12    *      http://www.apache.org/licenses/LICENSE-2.0\r
13   * \r
14    * Unless required by applicable law or agreed to in writing, software\r
15   * distributed under the License is distributed on an "AS IS" BASIS,\r
16   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17   * See the License for the specific language governing permissions and\r
18   * limitations under the License.\r
19   * ============LICENSE_END====================================================\r
20   *\r
21   * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
22   *\r
23 -->\r
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
25          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">\r
26   <modelVersion>4.0.0</modelVersion>\r
27   <parent>\r
28     <groupId>org.onap.aaf.authz</groupId>\r
29     <artifactId>parent</artifactId>\r
30     <version>1.0.1-SNAPSHOT</version>\r
31     <relativePath>../pom.xml</relativePath>\r
32   </parent>\r
33   \r
34   <artifactId>authz-defOrg</artifactId>\r
35   <name>Default Organization</name>\r
36   <description>Example Organization Module</description>\r
37   <packaging>jar</packaging>\r
38         <url>https://github.com/att/AAF</url>\r
39         \r
40         <developers>\r
41                 <developer>\r
42                 <name>Jonathan Gathman</name>\r
43                 <email></email>\r
44         <organization>ATT</organization>\r
45         <organizationUrl></organizationUrl>\r
46                 </developer>\r
47         </developers>\r
48 \r
49   <properties>\r
50     <maven.test.failure.ignore>false</maven.test.failure.ignore>\r
51     <project.swmVersion>0</project.swmVersion>\r
52         <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>\r
53         <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>\r
54         <!--  SONAR  -->\r
55                  <jacoco.version>0.7.7.201606060606</jacoco.version>\r
56                  <sonar.skip>true</sonar.skip>\r
57             <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>\r
58             <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>\r
59             <!-- Default Sonar configuration -->\r
60             <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>\r
61             <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>\r
62             <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->\r
63             <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>\r
64         <nexusproxy>https://nexus.onap.org</nexusproxy>\r
65                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>\r
66                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>\r
67                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>\r
68                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>\r
69 </properties>\r
70 \r
71   \r
72   <dependencies>\r
73     <dependency>\r
74       <groupId>org.onap.aaf.cadi</groupId>\r
75       <artifactId>cadi-core</artifactId>\r
76           <version>${project.cadiVersion}</version>\r
77     </dependency>\r
78     \r
79     <dependency>\r
80       <groupId>org.onap.aaf.authz</groupId>\r
81       <artifactId>authz-core</artifactId>\r
82           <version>${project.version}</version>\r
83     </dependency>\r
84     \r
85     <dependency>\r
86                 <groupId>javax.mail</groupId>\r
87                 <artifactId>mail</artifactId>\r
88         </dependency> \r
89   </dependencies>\r
90 \r
91         <build>\r
92                 <pluginManagement>\r
93                 <plugins>\r
94                 <plugin>\r
95                         <groupId>org.apache.maven.plugins</groupId>\r
96                         <artifactId>maven-javadoc-plugin</artifactId>\r
97                         <version>2.10.4</version>\r
98                         <configuration>\r
99                         <failOnError>false</failOnError>\r
100                         </configuration>\r
101                         <executions>\r
102                                 <execution>\r
103                                         <id>attach-javadocs</id>\r
104                                         <goals>\r
105                                                 <goal>jar</goal>\r
106                                         </goals>\r
107                                 </execution>\r
108                         </executions>\r
109                 </plugin> \r
110                  <plugin>\r
111                                 <groupId>org.sonatype.plugins</groupId>\r
112                                 <artifactId>nexus-staging-maven-plugin</artifactId>\r
113                                 <version>1.6.7</version>\r
114                                 <extensions>true</extensions>\r
115                                 <configuration>\r
116                                         <nexusUrl>${nexusproxy}</nexusUrl>\r
117                                         <stagingProfileId>176c31dfe190a</stagingProfileId>\r
118                                         <serverId>ecomp-staging</serverId>\r
119                                 </configuration>\r
120                         </plugin>               \r
121                         <plugin>\r
122           <groupId>org.jacoco</groupId>\r
123           <artifactId>jacoco-maven-plugin</artifactId>\r
124           <version>${jacoco.version}</version>\r
125           <configuration>\r
126             <excludes>\r
127               <exclude>**/gen/**</exclude>\r
128               <exclude>**/generated-sources/**</exclude>\r
129               <exclude>**/yang-gen/**</exclude>\r
130               <exclude>**/pax/**</exclude>\r
131             </excludes>\r
132           </configuration>\r
133           <executions>\r
134 \r
135             <execution>\r
136               <id>pre-unit-test</id>\r
137               <goals>\r
138                 <goal>prepare-agent</goal>\r
139               </goals>\r
140               <configuration>\r
141                 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>\r
142                 <propertyName>surefireArgLine</propertyName>\r
143               </configuration>\r
144             </execution>\r
145             \r
146        \r
147             <execution>\r
148               <id>post-unit-test</id>\r
149               <phase>test</phase>\r
150               <goals>\r
151                 <goal>report</goal>\r
152               </goals>\r
153               <configuration>\r
154                 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>\r
155                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>\r
156               </configuration>\r
157             </execution>\r
158             <execution>\r
159               <id>pre-integration-test</id>\r
160               <phase>pre-integration-test</phase>\r
161               <goals>\r
162                 <goal>prepare-agent</goal>\r
163               </goals>\r
164               <configuration>\r
165                 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>\r
166 \r
167                 <propertyName>failsafeArgLine</propertyName>\r
168               </configuration>\r
169             </execution>\r
170 \r
171        \r
172             <execution>\r
173               <id>post-integration-test</id>\r
174               <phase>post-integration-test</phase>\r
175               <goals>\r
176                 <goal>report</goal>\r
177               </goals>\r
178               <configuration>\r
179                 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>\r
180                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>\r
181               </configuration>\r
182             </execution>\r
183           </executions>\r
184         </plugin>       \r
185 \r
186                 </plugins>\r
187                 </pluginManagement>\r
188         </build>\r
189         <distributionManagement>\r
190                 <repository>\r
191                         <id>ecomp-releases</id>\r
192                         <name>AAF Release Repository</name>\r
193                         <url>${nexusproxy}${releaseNexusPath}</url>\r
194                 </repository>\r
195                 <snapshotRepository>\r
196                         <id>ecomp-snapshots</id>\r
197                         <name>AAF Snapshot Repository</name>\r
198                         <url>${nexusproxy}${snapshotNexusPath}</url>\r
199                 </snapshotRepository>\r
200                 <site>\r
201                         <id>ecomp-site</id>\r
202                         <url>dav:${nexusproxy}${sitePath}</url>\r
203                 </site>\r
204         </distributionManagement>\r
205 \r
206         \r
207 </project>\r