sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright (c) 2016 AT&T Intellectual Property. All rights reserved. |
| 4 | --> |
| 5 | |
| 6 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 7 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <parent> |
| 10 | <groupId>com.att.authz</groupId> |
| 11 | <artifactId>parent</artifactId> |
sg481n | a2ac678 | 2017-09-18 16:35:50 -0400 | [diff] [blame] | 12 | <version>1.0.1-SNAPSHOT</version> |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 13 | <relativePath>../pom.xml</relativePath> |
| 14 | </parent> |
| 15 | |
| 16 | <artifactId>authz-batch</artifactId> |
| 17 | <name>Authz Batch</name> |
| 18 | <description>Batch Processing for Authz</description> |
| 19 | <packaging>jar</packaging> |
| 20 | <url>https://github.com/att/AAF</url> |
| 21 | <licenses> |
| 22 | <license> |
| 23 | <name>BSD License</name> |
| 24 | <url> </url> |
| 25 | </license> |
| 26 | </licenses> |
| 27 | <developers> |
| 28 | <developer> |
| 29 | <name>Jonathan Gathman</name> |
| 30 | <email></email> |
| 31 | <organization>ATT</organization> |
| 32 | <organizationUrl></organizationUrl> |
| 33 | </developer> |
| 34 | </developers> |
| 35 | |
| 36 | <properties> |
| 37 | <maven.test.failure.ignore>false</maven.test.failure.ignore> |
| 38 | <project.swmVersion>1</project.swmVersion> |
sg481n | a2ac678 | 2017-09-18 16:35:50 -0400 | [diff] [blame] | 39 | <project.interfaceVersion>1.0.0-SNAPSHOT</project.interfaceVersion> |
| 40 | <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion> |
| 41 | <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion> |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 42 | </properties> |
| 43 | |
| 44 | <dependencies> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>org.onap.aaf.inno</groupId> |
| 48 | <artifactId>env</artifactId> |
sg481n | a2ac678 | 2017-09-18 16:35:50 -0400 | [diff] [blame] | 49 | <version>${project.innoVersion}</version> |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.onap.aaf.inno</groupId> |
| 54 | <artifactId>rosetta</artifactId> |
sg481n | a2ac678 | 2017-09-18 16:35:50 -0400 | [diff] [blame] | 55 | <version>${project.innoVersion}</version> |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
| 59 | <groupId>org.onap.aaf.cadi</groupId> |
| 60 | <artifactId>cadi-core</artifactId> |
sg481n | a2ac678 | 2017-09-18 16:35:50 -0400 | [diff] [blame] | 61 | <version>${project.cadiVersion}</version> |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
| 65 | <groupId>org.onap.aaf.cadi</groupId> |
| 66 | <artifactId>cadi-aaf</artifactId> |
sg481n | a2ac678 | 2017-09-18 16:35:50 -0400 | [diff] [blame] | 67 | <version>${project.cadiVersion}</version> |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 68 | </dependency> |
| 69 | |
| 70 | |
| 71 | |
| 72 | <!-- <dependency> |
| 73 | <groupId>com.att.authz</groupId> |
| 74 | <artifactId>authz-att</artifactId> |
| 75 | <exclusions> |
| 76 | <exclusion> |
| 77 | <groupId>javax.servlet</groupId> |
| 78 | <artifactId>servlet-api</artifactId> |
| 79 | </exclusion> |
| 80 | <exclusion> |
| 81 | <groupId>org.onap.aaf.cadi</groupId> |
| 82 | <artifactId>cadi-aaf</artifactId> |
| 83 | </exclusion> |
| 84 | <exclusion> |
| 85 | <groupId>org.onap.aaf.cadi</groupId> |
| 86 | <artifactId>cadi-core</artifactId> |
| 87 | </exclusion> |
| 88 | <exclusion> |
| 89 | <groupId>org.onap.aaf.cadi</groupId> |
| 90 | <artifactId>cadi-client</artifactId> |
| 91 | </exclusion> |
| 92 | </exclusions> |
| 93 | |
| 94 | </dependency> --> |
| 95 | |
| 96 | <dependency> |
sg481n | 5c30b7f | 2017-09-17 11:37:00 -0400 | [diff] [blame] | 97 | <groupId>prg.onap.aaf.authz</groupId> |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 98 | <artifactId>authz-cass</artifactId> |
sg481n | 5c30b7f | 2017-09-17 11:37:00 -0400 | [diff] [blame] | 99 | <version>${project.version}</version> |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 100 | <exclusions> |
| 101 | <exclusion> |
| 102 | <groupId>javax.servlet</groupId> |
| 103 | <artifactId>servlet-api</artifactId> |
| 104 | </exclusion> |
| 105 | <exclusion> |
| 106 | <groupId>org.onap.aaf.cadi</groupId> |
| 107 | <artifactId>cadi-aaf</artifactId> |
| 108 | </exclusion> |
| 109 | <exclusion> |
| 110 | <groupId>org.onap.aaf.cadi</groupId> |
| 111 | <artifactId>cadi-core</artifactId> |
| 112 | </exclusion> |
| 113 | <exclusion> |
| 114 | <groupId>org.onap.aaf.cadi</groupId> |
| 115 | <artifactId>cadi-client</artifactId> |
| 116 | </exclusion> |
| 117 | |
| 118 | </exclusions> |
| 119 | </dependency> |
| 120 | |
| 121 | <dependency> |
| 122 | <groupId>org.joda</groupId> |
| 123 | <artifactId>joda-time</artifactId> |
| 124 | <version>2.5</version> |
| 125 | </dependency> |
| 126 | |
| 127 | <dependency> |
| 128 | <groupId>org.slf4j</groupId> |
| 129 | <artifactId>slf4j-log4j12</artifactId> |
| 130 | </dependency> |
| 131 | |
| 132 | <!-- Data Migration |
| 133 | <dependency> |
| 134 | <groupId>com.oracle</groupId> |
| 135 | <artifactId>ojdbc6</artifactId> |
| 136 | <version>11.2.0</version> |
| 137 | </dependency> |
| 138 | |
| 139 | <dependency> |
| 140 | <groupId>com.opencsv</groupId> |
| 141 | <artifactId>opencsv</artifactId> |
| 142 | <version>3.3</version> |
| 143 | </dependency> |
| 144 | --> |
| 145 | </dependencies> |
| 146 | |
| 147 | <build> |
| 148 | <plugins> |
sg481n | a2ac678 | 2017-09-18 16:35:50 -0400 | [diff] [blame] | 149 | |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 150 | |
| 151 | <plugin> |
| 152 | <artifactId>maven-assembly-plugin</artifactId> |
| 153 | <version>2.4</version> |
| 154 | |
| 155 | <configuration> |
| 156 | <classifier>tests</classifier> |
| 157 | <archive> |
| 158 | <manifestEntries> |
| 159 | <Sealed>true</Sealed> |
| 160 | </manifestEntries> |
| 161 | </archive> |
| 162 | </configuration> |
| 163 | <executions> |
| 164 | <execution> |
| 165 | <id>depends</id> |
| 166 | <phase>package</phase> |
| 167 | <goals> |
| 168 | <goal>single</goal> |
| 169 | </goals> |
| 170 | <configuration> |
| 171 | <descriptorRefs> |
| 172 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 173 | </descriptorRefs> |
| 174 | <archive> |
| 175 | <manifest> |
sg481n | 40cd356 | 2017-09-01 13:12:31 -0400 | [diff] [blame] | 176 | <mainClass>org.onap.aaf.authz.Batch</mainClass> |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 177 | </manifest> |
| 178 | </archive> |
| 179 | </configuration> |
| 180 | </execution> |
| 181 | <execution> |
| 182 | <id>swm</id> |
| 183 | <phase>package</phase> |
| 184 | <goals> |
| 185 | <goal>single</goal> |
| 186 | </goals> |
| 187 | <configuration> |
| 188 | <finalName>authz-batch-${project.version}.${project.swmVersion}</finalName> |
| 189 | <descriptors> |
| 190 | <descriptor>../authz-service/src/main/assemble/swm.xml</descriptor> |
| 191 | </descriptors> |
| 192 | <archive> |
| 193 | </archive> |
| 194 | </configuration> |
| 195 | </execution> |
| 196 | </executions> |
| 197 | </plugin> |
| 198 | <plugin> |
| 199 | <groupId>org.apache.maven.plugins</groupId> |
| 200 | <artifactId>maven-javadoc-plugin</artifactId> |
| 201 | <configuration> |
| 202 | <failOnError>false</failOnError> |
| 203 | </configuration> |
| 204 | <executions> |
| 205 | <execution> |
| 206 | <id>attach-javadocs</id> |
| 207 | <goals> |
| 208 | <goal>jar</goal> |
| 209 | </goals> |
| 210 | </execution> |
| 211 | </executions> |
| 212 | </plugin> |
| 213 | |
| 214 | |
| 215 | <plugin> |
| 216 | <groupId>org.apache.maven.plugins</groupId> |
| 217 | <artifactId>maven-source-plugin</artifactId> |
| 218 | <version>2.2.1</version> |
| 219 | <executions> |
| 220 | <execution> |
| 221 | <id>attach-sources</id> |
| 222 | <goals> |
| 223 | <goal>jar-no-fork</goal> |
| 224 | </goals> |
| 225 | </execution> |
| 226 | </executions> |
| 227 | </plugin> |
| 228 | |
| 229 | |
| 230 | <plugin> |
| 231 | <groupId>org.apache.maven.plugins</groupId> |
| 232 | <artifactId>maven-gpg-plugin</artifactId> |
| 233 | <version>1.5</version> |
| 234 | <executions> |
| 235 | <execution> |
| 236 | <id>sign-artifacts</id> |
| 237 | <phase>verify</phase> |
| 238 | <goals> |
| 239 | <goal>sign</goal> |
| 240 | </goals> |
| 241 | </execution> |
| 242 | </executions> |
| 243 | </plugin> |
| 244 | |
sg481n | 40cd356 | 2017-09-01 13:12:31 -0400 | [diff] [blame] | 245 | |
sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 246 | </plugins> |
| 247 | </build> |
| 248 | </project> |