[AAF-21] Initial code import
[aaf/cadi.git] / cass / pom.xml
1 <!--\r
2   ============LICENSE_START====================================================\r
3   * org.onap.aai\r
4   * ===========================================================================\r
5   * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6   * Copyright © 2017 Amdocs\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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\r
25         <parent>\r
26                 <groupId>com.att.cadi</groupId>\r
27                 <artifactId>parent</artifactId>\r
28                 <version>1.3.2</version>\r
29                 <relativePath>..</relativePath>\r
30         </parent>\r
31 \r
32         <modelVersion>4.0.0</modelVersion>\r
33         <name>CADI Cassandra Plugin</name>\r
34         <packaging>jar</packaging>\r
35         <url>https://github.com/att/AAF</url>\r
36         <description>CADI</description>\r
37         <artifactId>cadi-cass</artifactId>\r
38 \r
39         <dependencies>\r
40                 <dependency>\r
41                         <groupId>com.att.cadi</groupId>\r
42                         <artifactId>cadi-aaf</artifactId>\r
43                 </dependency>\r
44                 \r
45                 <dependency>\r
46                 <groupId>org.apache.cassandra</groupId>\r
47                 <artifactId>cassandra-all</artifactId>\r
48                 <version>2.1.14</version>\r
49                 <scope>compile</scope>\r
50                 <exclusions>\r
51                       <exclusion> \r
52                         <groupId>org.slf4j</groupId>\r
53                         <artifactId>slf4j-log4j12</artifactId>\r
54                       </exclusion>\r
55                       <exclusion> \r
56                         <groupId>log4j</groupId>\r
57                         <artifactId>log4j</artifactId>\r
58                       </exclusion>\r
59                     </exclusions> \r
60                 </dependency>\r
61                 \r
62         </dependencies>\r
63         <build>\r
64                 <plugins>\r
65                         <plugin>\r
66                                 <groupId>org.apache.maven.plugins</groupId>\r
67                                 <artifactId>maven-jarsigner-plugin</artifactId>\r
68                         </plugin>\r
69                 \r
70                 <plugin>\r
71                         <groupId>org.apache.maven.plugins</groupId>\r
72                         <artifactId>maven-javadoc-plugin</artifactId>\r
73                                         <configuration>\r
74                         <failOnError>false</failOnError>\r
75                         </configuration>\r
76                         <executions>\r
77                                 <execution>\r
78                                         <id>attach-javadocs</id>\r
79                                         <goals>\r
80                                                 <goal>jar</goal>\r
81                                         </goals>\r
82                                 </execution>\r
83                         </executions>\r
84                 </plugin> \r
85            \r
86            \r
87                <plugin>\r
88                       <groupId>org.apache.maven.plugins</groupId>\r
89                       <artifactId>maven-source-plugin</artifactId>\r
90                       <version>2.2.1</version>\r
91                       <executions>\r
92                         <execution>\r
93                           <id>attach-sources</id>\r
94                           <goals>\r
95                             <goal>jar-no-fork</goal>\r
96                           </goals>\r
97                         </execution>\r
98                       </executions>\r
99                     </plugin>\r
100 \r
101                         \r
102                 <plugin>\r
103                         <groupId>org.sonatype.plugins</groupId>\r
104                         <artifactId>nexus-staging-maven-plugin</artifactId>\r
105                         <version>1.6.7</version>\r
106                         <extensions>true</extensions>\r
107                         <configuration>\r
108                         <serverId>ossrhdme</serverId>\r
109                         <nexusUrl>https://oss.sonatype.org/</nexusUrl>\r
110                         <autoReleaseAfterClose>true</autoReleaseAfterClose>\r
111                         </configuration>\r
112                 </plugin>\r
113                 </plugins>\r
114         </build>        \r
115 </project>\r