Update version.properties to aaf authz
[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.0-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         <licenses>\r
40                 <license>\r
41                 <name>BSD License</name>\r
42                 <url> </url>\r
43                 </license>\r
44         </licenses>\r
45         <developers>\r
46                 <developer>\r
47                 <name>Jonathan Gathman</name>\r
48                 <email></email>\r
49         <organization>ATT</organization>\r
50         <organizationUrl></organizationUrl>\r
51                 </developer>\r
52         </developers>\r
53 \r
54   <properties>\r
55     <maven.test.failure.ignore>false</maven.test.failure.ignore>\r
56     <project.swmVersion>0</project.swmVersion>\r
57         <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>\r
58         <sonar.language>java</sonar.language>\r
59                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>\r
60                 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>\r
61                 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>\r
62                 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>\r
63                 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>\r
64                 <sonar.projectVersion>${project.version}</sonar.projectVersion>\r
65         <nexusproxy>https://nexus.onap.org</nexusproxy>\r
66                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>\r
67                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>\r
68                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>\r
69                 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>\r
70 </properties>\r
71 \r
72   \r
73   <dependencies>\r
74     <dependency>\r
75       <groupId>org.onap.aaf.cadi</groupId>\r
76       <artifactId>cadi-core</artifactId>\r
77     </dependency>\r
78     \r
79     <dependency>\r
80       <groupId>org.onap.aaf.authz</groupId>\r
81       <artifactId>authz-core</artifactId>\r
82     </dependency>\r
83     \r
84     <dependency>\r
85                 <groupId>javax.mail</groupId>\r
86                 <artifactId>mail</artifactId>\r
87         </dependency> \r
88   </dependencies>\r
89 \r
90         <build>\r
91                 <pluginManagement>\r
92                 <plugins>\r
93                  <plugin>\r
94                                 <groupId>org.sonatype.plugins</groupId>\r
95                                 <artifactId>nexus-staging-maven-plugin</artifactId>\r
96                                 <version>1.6.7</version>\r
97                                 <extensions>true</extensions>\r
98                                 <configuration>\r
99                                         <nexusUrl>${nexusproxy}</nexusUrl>\r
100                                         <stagingProfileId>176c31dfe190a</stagingProfileId>\r
101                                         <serverId>ecomp-staging</serverId>\r
102                                         <skipNexusStagingDeployMojo>${skip.staging.artifacts}</skipNexusStagingDeployMojo>\r
103                                 </configuration>\r
104                         </plugin>               \r
105                         <plugin>\r
106                                 <groupId>org.jacoco</groupId>\r
107                                 <artifactId>jacoco-maven-plugin</artifactId>\r
108                                 <version>0.7.7.201606060606</version>\r
109                                 <configuration>\r
110                                         <dumpOnExit>true</dumpOnExit>\r
111                                         <includes>\r
112                                                 <include>org.onap.aaf.*</include>\r
113                                         </includes>\r
114                                 </configuration>\r
115                                 <executions>\r
116                                         <execution>\r
117                                                 <id>pre-unit-test</id>\r
118                                                 <goals>\r
119                                                         <goal>prepare-agent</goal>\r
120                                                 </goals>\r
121                                                 <configuration>\r
122                                                         <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>\r
123                                                         <!-- <append>true</append> -->\r
124                                                 </configuration>\r
125                                         </execution>\r
126                                         <execution>\r
127                                                 <id>pre-integration-test</id>\r
128                                                 <phase>pre-integration-test</phase>\r
129                                                 <goals>\r
130                                                         <goal>prepare-agent</goal>\r
131                                                 </goals>\r
132                                                 <configuration>\r
133                                                         <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>\r
134                                                         <!-- <append>true</append> -->\r
135                                                 </configuration>\r
136                                         </execution>\r
137                                         <execution>\r
138                         <goals>\r
139                             <goal>merge</goal>\r
140                         </goals>\r
141                         <phase>post-integration-test</phase>\r
142                         <configuration>\r
143                             <fileSets>\r
144                                 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">\r
145                                     <directory>${project.build.directory}/coverage-reports</directory>\r
146                                     <includes>\r
147                                         <include>*.exec</include>\r
148                                     </includes>\r
149                                 </fileSet>\r
150                             </fileSets>\r
151                             <destFile>${project.build.directory}/jacoco-dev.exec</destFile>\r
152                         </configuration>\r
153                     </execution>\r
154                                 </executions>\r
155                         </plugin>\r
156                 </plugins>\r
157                 </pluginManagement>\r
158         </build>\r
159         <distributionManagement>\r
160                 <repository>\r
161                         <id>ecomp-releases</id>\r
162                         <name>AAF Release Repository</name>\r
163                         <url>${nexusproxy}${releaseNexusPath}</url>\r
164                 </repository>\r
165                 <snapshotRepository>\r
166                         <id>ecomp-snapshots</id>\r
167                         <name>AAF Snapshot Repository</name>\r
168                         <url>${nexusproxy}${snapshotNexusPath}</url>\r
169                 </snapshotRepository>\r
170                 <site>\r
171                         <id>ecomp-site</id>\r
172                         <url>dav:${nexusproxy}${sitePath}</url>\r
173                 </site>\r
174         </distributionManagement>\r
175 <pluginRepositories>\r
176         <pluginRepository>\r
177             <id>onap-plugin-snapshots</id>\r
178             <url>https://nexus.onap.org/content/repositories/snapshots/</url>\r
179         </pluginRepository>\r
180     </pluginRepositories>\r
181         \r
182         <repositories>\r
183                 <repository>\r
184                         <id>central</id>\r
185                         <name>Maven 2 repository 2</name>\r
186                         <url>http://repo2.maven.org/maven2/</url>\r
187                 </repository>\r
188                 <repository>\r
189             <id>onap-jar-snapshots</id>\r
190             <url>https://nexus.onap.org/content/repositories/snapshots</url>\r
191         </repository>\r
192                 <repository>\r
193                         <id>spring-repo</id>\r
194                         <name>Spring repo</name>\r
195                         <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>\r
196                 </repository>\r
197                 <repository>\r
198                         <id>repository.jboss.org-public</id>\r
199                         <name>JBoss.org Maven repository</name>\r
200                         <url>https://repository.jboss.org/nexus/content/groups/public</url>\r
201                 </repository>\r
202         </repositories>\r
203         \r
204 </project>\r