Update project structure to org.onap.aaf
[aaf/inno.git] / pom.xml
1 <!--
2  /*******************************************************************************
3  * ============LICENSE_START====================================================
4  * * org.onap.aaf
5  * * ===========================================================================
6  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7  * * ===========================================================================
8  * * Licensed under the Apache License, Version 2.0 (the "License");
9  * * you may not use this file except in compliance with the License.
10  * * You may obtain a copy of the License at
11  * * 
12  *  *      http://www.apache.org/licenses/LICENSE-2.0
13  * * 
14  *  * Unless required by applicable law or agreed to in writing, software
15  * * distributed under the License is distributed on an "AS IS" BASIS,
16  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * * See the License for the specific language governing permissions and
18  * * limitations under the License.
19  * * ============LICENSE_END====================================================
20  * *
21  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * *
23  ******************************************************************************/
24 -->
25 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27         <modelVersion>4.0.0</modelVersion>
28         <groupId>org.onap.aaf.inno</groupId>
29         <artifactId>parent</artifactId>
30         <name>inno</name>
31         <version>1.0.0-SNAPSHOT</version>
32         <packaging>pom</packaging>
33         <url>https://github.com/att/AAF</url>
34         <description>INNO</description>
35         <licenses>
36                 <license>
37                 <name>BSD License</name>
38                 <url> </url>
39                 </license>
40         </licenses>
41
42         <developers>
43                 <developer>
44                 <name>Jonathan Gathman</name>
45                 <email></email>
46         <organization>ATT</organization>
47         <organizationUrl></organizationUrl>
48                 </developer>
49         </developers>
50      
51          <parent>
52                 <groupId>org.onap.oparent</groupId>
53                 <artifactId>oparent</artifactId>
54                 <version>1.0.0-SNAPSHOT</version>
55         </parent>
56         
57         <properties>
58                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
59                 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
60                 <nexusproxy>https://nexus.onap.org</nexusproxy>
61                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
62                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
63                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
64                 <sitePath>/content/sites/site/org/onap/aaf/inno/${project.artifactId}/${project.version}</sitePath>
65         </properties>
66
67         <dependencies>
68                 <dependency>
69                         <groupId>junit</groupId>
70                         <artifactId>junit</artifactId>
71                         <version>4.10</version>
72                         <scope>test</scope>
73                 </dependency>   
74         </dependencies>
75
76         <build>
77                 <testSourceDirectory>src/test/java</testSourceDirectory>
78                         <plugins>
79                                 <plugin>
80                                         <groupId>org.apache.maven.plugins</groupId>
81                                         <version>2.4</version>
82                                         <artifactId>maven-jar-plugin</artifactId>
83                                         <configuration>
84                                                 <outputDirectory>target</outputDirectory>
85                                         </configuration>
86                                 </plugin>
87                                 
88                                 <plugin>
89                                   <groupId>org.apache.maven.plugins</groupId>
90                                   <artifactId>maven-surefire-plugin</artifactId>
91                                   <version>2.17</version>
92                                   <configuration>
93                                         <skipTests>false</skipTests>
94                                         <includes>
95                                           <include>**/JU*.java</include>
96                                         </includes>
97         
98                                   </configuration>
99                                 </plugin>
100         
101                                 <plugin>
102                                         <inherited>true</inherited>
103                                         <groupId>org.apache.maven.plugins</groupId>
104                                         <artifactId>maven-compiler-plugin</artifactId>
105                                          <version>3.6.2</version>  
106                                         <configuration>
107                                                 <source>1.6</source>
108                                                 <target>1.6</target>
109                                         </configuration>
110                                 </plugin>
111                <plugin>
112                       <groupId>org.apache.maven.plugins</groupId>
113                       <artifactId>maven-source-plugin</artifactId>
114                       <version>2.2.1</version>
115                       <executions>
116                         <execution>
117                           <id>attach-sources</id>
118                           <goals>
119                             <goal>jar-no-fork</goal>
120                           </goals>
121                         </execution>
122                       </executions>
123                     </plugin>
124         
125                 <plugin>
126                                 <groupId>org.sonatype.plugins</groupId>
127                                 <artifactId>nexus-staging-maven-plugin</artifactId>
128                                 <version>1.6.7</version>
129                                 <extensions>true</extensions>
130                                 <configuration>
131                                         <nexusUrl>${nexusproxy}</nexusUrl>
132                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
133                                         <serverId>ecomp-staging</serverId>
134                                 </configuration>
135                         </plugin>       
136
137         </plugins>
138 </build>
139 <distributionManagement>
140                 <repository>
141                         <id>ecomp-releases</id>
142                         <name>AAF Release Repository</name>
143                         <url>${nexusproxy}${releaseNexusPath}</url>
144                 </repository>
145                 <snapshotRepository>
146                         <id>ecomp-snapshots</id>
147                         <name>AAF Snapshot Repository</name>
148                         <url>${nexusproxy}${snapshotNexusPath}</url>
149                 </snapshotRepository>
150                 <site>
151                         <id>ecomp-site</id>
152                         <url>dav:${nexusproxy}${sitePath}</url>
153                 </site>
154         </distributionManagement>
155 <pluginRepositories>
156         <pluginRepository>
157             <id>onap-plugin-snapshots</id>
158             <url>https://nexus.onap.org/content/repositories/snapshots/</url>
159         </pluginRepository>
160     </pluginRepositories>
161         
162         <repositories>
163                 <repository>
164                         <id>central</id>
165                         <name>Maven 2 repository 2</name>
166                         <url>http://repo2.maven.org/maven2/</url>
167                 </repository>
168                 <repository>
169             <id>onap-jar-snapshots</id>
170             <url>https://nexus.onap.org/content/repositories/snapshots</url>
171         </repository>
172                 <repository>
173                         <id>spring-repo</id>
174                         <name>Spring repo</name>
175                         <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
176                 </repository>
177                 <repository>
178                         <id>repository.jboss.org-public</id>
179                         <name>JBoss.org Maven repository</name>
180                         <url>https://repository.jboss.org/nexus/content/groups/public</url>
181                 </repository>
182         </repositories>
183         <modules>
184                 <module>env</module>
185                 <module>xgen</module>
186                 <module>rosetta</module>
187
188                 <!-- 
189                 <module>persist</module>
190                 <module>fsdb</module>
191                 <module>rosetta</module>
192                 <module>persist-fsdb</module>
193                 <module>rmodel</module>
194                 <module>rclient</module>
195                 <module>rserv</module>
196                 <module>fsdbrserv</module>
197                 <module>guigen</module>
198                 <module>mdgui</module>
199                 <module>poll</module>
200                 <module>ngreq</module>
201                 <module>lpeer</module>
202                  -->
203                 <module>log4j</module>
204         </modules>
205
206         <dependencyManagement>
207                 <dependencies>
208                         <dependency>
209                                 <groupId>org.onap.aaf.cadi</groupId>
210                                 <artifactId>cadi-core</artifactId>
211                                 <version>${project.cadiVersion}</version>
212                         </dependency>
213                         <dependency>
214                                 <groupId>org.onap.aaf.cadi</groupId>
215                                 <artifactId>cadi-aaf</artifactId>
216                                 <version>${project.cadiVersion}</version>
217                         </dependency>
218                         <dependency>
219                                 <groupId>log4j</groupId>
220                                 <artifactId>log4j</artifactId>
221                                 <version>1.2.17</version>
222                         </dependency>
223                         <dependency>
224                                 <groupId>org.slf4j</groupId>
225                                 <artifactId>slf4j-log4j12</artifactId>
226                                 <version>1.7.5</version>
227                         </dependency>
228                 </dependencies>
229         </dependencyManagement>
230
231
232 </project>