Update AAF Version 1.0.0
[aaf/cadi.git] / cass / pom.xml
1 <!--\r
2   ============LICENSE_START====================================================\r
3   * org.onap.aaf\r
4   * ===========================================================================\r
5   * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6   * ===========================================================================\r
7   * Licensed under the Apache License, Version 2.0 (the "License");\r
8   * you may not use this file except in compliance with the License.\r
9   * You may obtain a copy of the License at\r
10   * \r
11    *      http://www.apache.org/licenses/LICENSE-2.0\r
12   * \r
13    * Unless required by applicable law or agreed to in writing, software\r
14   * distributed under the License is distributed on an "AS IS" BASIS,\r
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16   * See the License for the specific language governing permissions and\r
17   * limitations under the License.\r
18   * ============LICENSE_END====================================================\r
19   *\r
20   * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21   *\r
22 -->\r
23 <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
24         <parent>\r
25                 <groupId>com.att.cadi</groupId>\r
26                 <artifactId>parent</artifactId>\r
27                 <version>1.0.0-SNAPSHOT</version>\r
28                 <relativePath>..</relativePath>\r
29         </parent>\r
30 \r
31         <modelVersion>4.0.0</modelVersion>\r
32         <name>CADI Cassandra Plugin</name>\r
33         <packaging>jar</packaging>\r
34         <url>https://github.com/att/AAF</url>\r
35         <description>CADI</description>\r
36         <artifactId>cadi-cass</artifactId>\r
37 \r
38         <dependencies>\r
39                 <dependency>\r
40                         <groupId>com.att.cadi</groupId>\r
41                         <artifactId>cadi-aaf</artifactId>\r
42                 </dependency>\r
43                 \r
44                 <dependency>\r
45                 <groupId>org.apache.cassandra</groupId>\r
46                 <artifactId>cassandra-all</artifactId>\r
47                 <version>2.1.14</version>\r
48                 <scope>compile</scope>\r
49                 <exclusions>\r
50                       <exclusion> \r
51                         <groupId>org.slf4j</groupId>\r
52                         <artifactId>slf4j-log4j12</artifactId>\r
53                       </exclusion>\r
54                       <exclusion> \r
55                         <groupId>log4j</groupId>\r
56                         <artifactId>log4j</artifactId>\r
57                       </exclusion>\r
58                     </exclusions> \r
59                 </dependency>\r
60                 \r
61         </dependencies>\r
62         <build>\r
63                 <plugins>\r
64                         <plugin>\r
65                                 <groupId>org.apache.maven.plugins</groupId>\r
66                                 <artifactId>maven-jarsigner-plugin</artifactId>\r
67                         </plugin>\r
68                 \r
69                 <plugin>\r
70                         <groupId>org.apache.maven.plugins</groupId>\r
71                         <artifactId>maven-javadoc-plugin</artifactId>\r
72                                         <configuration>\r
73                         <failOnError>false</failOnError>\r
74                         </configuration>\r
75                         <executions>\r
76                                 <execution>\r
77                                         <id>attach-javadocs</id>\r
78                                         <goals>\r
79                                                 <goal>jar</goal>\r
80                                         </goals>\r
81                                 </execution>\r
82                         </executions>\r
83                 </plugin> \r
84            \r
85            \r
86                <plugin>\r
87                       <groupId>org.apache.maven.plugins</groupId>\r
88                       <artifactId>maven-source-plugin</artifactId>\r
89                       <version>2.2.1</version>\r
90                       <executions>\r
91                         <execution>\r
92                           <id>attach-sources</id>\r
93                           <goals>\r
94                             <goal>jar-no-fork</goal>\r
95                           </goals>\r
96                         </execution>\r
97                       </executions>\r
98                     </plugin>\r
99 \r
100                         \r
101                 <plugin>\r
102                         <groupId>org.sonatype.plugins</groupId>\r
103                         <artifactId>nexus-staging-maven-plugin</artifactId>\r
104                         <version>1.6.7</version>\r
105                         <extensions>true</extensions>\r
106                         <configuration>\r
107                         <serverId>ossrhdme</serverId>\r
108                         <nexusUrl>https://oss.sonatype.org/</nexusUrl>\r
109                         <autoReleaseAfterClose>true</autoReleaseAfterClose>\r
110                         </configuration>\r
111                 </plugin>\r
112                 </plugins>\r
113         </build>        \r
114 </project>\r