Gary Wu | 1c1fc78 | 2018-08-24 15:30:22 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Alexis de Talhouët | f07c74c | 2019-02-26 11:26:03 -0500 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.onap.so</groupId> |
| 7 | <artifactId>so</artifactId> |
| 8 | <version>1.4.0-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | <artifactId>common</artifactId> |
| 11 | <name>MSO Common classes</name> |
| 12 | <description>MSO Common classes:- Logger</description> |
Alexis de Talhouët | f07c74c | 2019-02-26 11:26:03 -0500 | [diff] [blame] | 13 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 14 | <properties> |
| 15 | <grpc.version>1.17.1</grpc.version> |
| 16 | <protobuf.version>3.6.1</protobuf.version> |
| 17 | <grpc.netty.version>4.1.30.Final</grpc.netty.version> |
Marcus G K Williams | 0065d70 | 2019-05-13 14:20:33 -0700 | [diff] [blame] | 18 | <ccsdk.version>0.4.2</ccsdk.version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 19 | </properties> |
Alexis de Talhouët | f07c74c | 2019-02-26 11:26:03 -0500 | [diff] [blame] | 20 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 21 | <dependencies> |
| 22 | <dependency> |
| 23 | <groupId>org.apache.httpcomponents</groupId> |
| 24 | <artifactId>httpclient</artifactId> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>javax.servlet</groupId> |
| 28 | <artifactId>javax.servlet-api</artifactId> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.springframework</groupId> |
| 32 | <artifactId>spring-aspects</artifactId> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>org.springframework.boot</groupId> |
| 36 | <artifactId>spring-boot-starter-security</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.springframework.boot</groupId> |
| 40 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>com.jayway.jsonpath</groupId> |
| 44 | <artifactId>json-path</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.hibernate</groupId> |
| 48 | <artifactId>hibernate-core</artifactId> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.springframework</groupId> |
| 52 | <artifactId>spring-web</artifactId> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.springframework</groupId> |
| 56 | <artifactId>spring-webmvc</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.onap.aai.schema-service</groupId> |
| 60 | <artifactId>aai-schema</artifactId> |
Bonkur, Venkat | a043129 | 2019-12-11 10:50:04 -0500 | [diff] [blame] | 61 | <version>1.6.1-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.modelmapper</groupId> |
| 65 | <artifactId>modelmapper</artifactId> |
| 66 | <version>1.1.0</version> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>com.google.guava</groupId> |
| 70 | <artifactId>guava</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.apache.commons</groupId> |
| 74 | <artifactId>commons-lang3</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.apache.cxf</groupId> |
| 78 | <artifactId>cxf-rt-rs-client</artifactId> |
| 79 | <version>${cxf.version}</version> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>com.shazam</groupId> |
| 84 | <artifactId>shazamcrest</artifactId> |
| 85 | <version>0.11</version> |
| 86 | <scope>test</scope> |
| 87 | <exclusions> |
| 88 | <exclusion> |
| 89 | <groupId>com.google.guava</groupId> |
| 90 | <artifactId>guava</artifactId> |
| 91 | </exclusion> |
| 92 | <exclusion> |
| 93 | <groupId>org.apache.commons</groupId> |
| 94 | <artifactId>commons-lang3</artifactId> |
| 95 | </exclusion> |
| 96 | </exclusions> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.slf4j</groupId> |
| 100 | <artifactId>slf4j-ext</artifactId> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.slf4j</groupId> |
| 104 | <artifactId>slf4j-api</artifactId> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.springframework.boot</groupId> |
| 108 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 109 | <optional>true</optional> |
| 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>net.jodah</groupId> |
| 113 | <artifactId>failsafe</artifactId> |
Benjamin, Max | 577bd39 | 2019-06-26 11:26:55 -0400 | [diff] [blame] | 114 | <version>2.0.1</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.springframework.security</groupId> |
| 118 | <artifactId>spring-security-web</artifactId> |
| 119 | </dependency> |
| 120 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 121 | <groupId>org.mockito</groupId> |
| 122 | <artifactId>mockito-core</artifactId> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.json</groupId> |
| 126 | <artifactId>json</artifactId> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>org.springframework.boot</groupId> |
| 130 | <artifactId>spring-boot-starter-test</artifactId> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | <dependency> |
Ramesh Parthasarathy | 837beb7 | 2019-11-21 02:04:03 +0000 | [diff] [blame] | 134 | <groupId>org.onap.aaf.authz</groupId> |
| 135 | <artifactId>aaf-cadi-aaf</artifactId> |
| 136 | <version>2.1.9</version> |
| 137 | <exclusions> |
| 138 | <exclusion> |
| 139 | <groupId>javax.servlet</groupId> |
| 140 | <artifactId>servlet-api</artifactId> |
| 141 | </exclusion> |
| 142 | </exclusions> |
| 143 | </dependency> |
| 144 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 145 | <groupId>org.reflections</groupId> |
| 146 | <artifactId>reflections</artifactId> |
| 147 | <version>0.9.11</version> |
| 148 | </dependency> |
Benjamin, Max (mb388a) | 7022234 | 2019-06-19 14:16:52 -0400 | [diff] [blame] | 149 | <dependency> |
| 150 | <groupId>com.zaxxer</groupId> |
| 151 | <artifactId>HikariCP</artifactId> |
| 152 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 153 | <!-- CDS dependencies --> |
| 154 | <dependency> |
| 155 | <groupId>org.onap.ccsdk.cds.components</groupId> |
| 156 | <artifactId>proto-definition</artifactId> |
| 157 | <version>${ccsdk.version}</version> |
| 158 | </dependency> |
Alexis de Talhouët | f07c74c | 2019-02-26 11:26:03 -0500 | [diff] [blame] | 159 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 160 | <!-- protobuf dependencies --> |
| 161 | <dependency> |
| 162 | <groupId>com.google.protobuf</groupId> |
| 163 | <artifactId>protobuf-java</artifactId> |
| 164 | <version>${protobuf.version}</version> |
| 165 | </dependency> |
Alexis de Talhouët | f07c74c | 2019-02-26 11:26:03 -0500 | [diff] [blame] | 166 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 167 | <!-- gRPC dependencies --> |
| 168 | <dependency> |
| 169 | <groupId>io.grpc</groupId> |
| 170 | <artifactId>grpc-protobuf</artifactId> |
| 171 | <version>${grpc.version}</version> |
| 172 | <exclusions> |
| 173 | <exclusion> |
| 174 | <groupId>com.google.code.findbugs</groupId> |
| 175 | <artifactId>jsr305</artifactId> |
| 176 | </exclusion> |
| 177 | </exclusions> |
| 178 | </dependency> |
| 179 | <dependency> |
| 180 | <groupId>io.grpc</groupId> |
| 181 | <artifactId>grpc-stub</artifactId> |
| 182 | <version>${grpc.version}</version> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>io.grpc</groupId> |
| 186 | <artifactId>grpc-netty</artifactId> |
| 187 | <version>${grpc.version}</version> |
| 188 | </dependency> |
| 189 | <dependency> |
| 190 | <groupId>io.grpc</groupId> |
| 191 | <artifactId>grpc-testing</artifactId> |
| 192 | <version>${grpc.version}</version> |
| 193 | <scope>test</scope> |
| 194 | </dependency> |
Smokowski, Steven | fa36daa | 2019-08-15 21:40:16 -0400 | [diff] [blame] | 195 | <dependency> |
| 196 | <groupId>org.javatuples</groupId> |
| 197 | <artifactId>javatuples</artifactId> |
| 198 | <version>1.2</version> |
| 199 | </dependency> |
Bhatt, Prema | ae9a2bd | 2019-09-17 08:08:12 -0400 | [diff] [blame] | 200 | <dependency> |
Boslet, Cory | ff4b57e | 2019-09-08 11:31:56 -0400 | [diff] [blame] | 201 | <groupId>org.camunda.bpm</groupId> |
| 202 | <artifactId>camunda-external-task-client</artifactId> |
| 203 | <version>1.1.1</version> |
| 204 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 205 | </dependencies> |
Benjamin, Max (mb388a) | 7022234 | 2019-06-19 14:16:52 -0400 | [diff] [blame] | 206 | <dependencyManagement> |
| 207 | <dependencies> |
| 208 | <dependency> |
| 209 | <groupId>org.springframework.boot</groupId> |
| 210 | <artifactId>spring-boot-dependencies</artifactId> |
| 211 | <version>${springboot.version}</version> |
| 212 | <type>pom</type> |
| 213 | <scope>import</scope> |
| 214 | </dependency> |
| 215 | </dependencies> |
| 216 | </dependencyManagement> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 217 | <build> |
| 218 | <resources> |
| 219 | <resource> |
| 220 | <directory>src/main/resources</directory> |
| 221 | <filtering>true</filtering> |
| 222 | </resource> |
| 223 | <resource> |
| 224 | <directory>src/main/java</directory> |
| 225 | <includes> |
| 226 | <include>**/*.java</include> |
| 227 | </includes> |
| 228 | </resource> |
| 229 | </resources> |
| 230 | <plugins> |
| 231 | <plugin> |
| 232 | <groupId>org.apache.maven.plugins</groupId> |
| 233 | <artifactId>maven-surefire-plugin</artifactId> |
| 234 | <executions> |
| 235 | <execution> |
| 236 | <id>default-test</id> |
| 237 | <goals> |
| 238 | <goal>test</goal> |
| 239 | </goals> |
| 240 | <configuration> |
| 241 | <includes> |
| 242 | <include>**/NonSpringSuite.java</include> |
| 243 | </includes> |
| 244 | </configuration> |
| 245 | </execution> |
| 246 | <execution> |
| 247 | <id>spring-tests</id> |
| 248 | <goals> |
| 249 | <goal>test</goal> |
| 250 | </goals> |
| 251 | <configuration> |
| 252 | <includes> |
| 253 | <include>**/SpringSuite.java</include> |
| 254 | </includes> |
| 255 | </configuration> |
| 256 | </execution> |
| 257 | </executions> |
| 258 | </plugin> |
Benjamin, Max | 7e37211 | 2019-11-08 10:32:10 -0500 | [diff] [blame] | 259 | <plugin> |
| 260 | <groupId>org.apache.maven.plugins</groupId> |
| 261 | <artifactId>maven-jar-plugin</artifactId> |
| 262 | <version>3.0.2</version> |
| 263 | <executions> |
| 264 | <execution> |
| 265 | <id>tests-jar</id> |
| 266 | <phase>package</phase> |
| 267 | <goals> |
| 268 | <goal>test-jar</goal> |
| 269 | </goals> |
| 270 | <configuration> |
| 271 | <skip>false</skip> |
| 272 | </configuration> |
| 273 | </execution> |
| 274 | </executions> |
| 275 | </plugin> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 276 | </plugins> |
| 277 | </build> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 278 | </project> |