Gary Wu | 1c1fc78 | 2018-08-24 15:30:22 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <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"> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 5 | <groupId>org.onap.so</groupId> |
Rob Daugherty | 2641935 | 2017-08-04 15:55:54 -0400 | [diff] [blame] | 6 | <artifactId>so</artifactId> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 7 | <version>1.4.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>common</artifactId> |
| 10 | <name>MSO Common classes</name> |
| 11 | <description>MSO Common classes:- Logger</description> |
| 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>org.apache.httpcomponents</groupId> |
| 15 | <artifactId>httpclient</artifactId> |
| 16 | </dependency> |
| 17 | <dependency> |
| 18 | <groupId>javax.servlet</groupId> |
Smokowski, Steve (ss835w) | 815bcc5 | 2018-12-04 15:33:20 -0500 | [diff] [blame^] | 19 | <artifactId>javax.servlet-api</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 20 | </dependency> |
| 21 | <dependency> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 22 | <groupId>org.springframework</groupId> |
Smokowski, Steve (ss835w) | 815bcc5 | 2018-12-04 15:33:20 -0500 | [diff] [blame^] | 23 | <artifactId>spring-aspects</artifactId> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 24 | </dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 25 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 26 | <groupId>org.springframework.boot</groupId> |
| 27 | <artifactId>spring-boot-starter-security</artifactId> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.springframework.boot</groupId> |
| 31 | <artifactId>spring-boot-starter-actuator</artifactId> |
Smokowski, Steve (ss835w) | 815bcc5 | 2018-12-04 15:33:20 -0500 | [diff] [blame^] | 32 | </dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 33 | <dependency> |
| 34 | <groupId>com.jayway.jsonpath</groupId> |
Smokowski, Steve (ss835w) | 815bcc5 | 2018-12-04 15:33:20 -0500 | [diff] [blame^] | 35 | <artifactId>json-path</artifactId> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 36 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 37 | <dependency> |
| 38 | <groupId>org.hibernate</groupId> |
| 39 | <artifactId>hibernate-core</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 40 | </dependency> |
| 41 | <dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 42 | <groupId>org.springframework</groupId> |
| 43 | <artifactId>spring-web</artifactId> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 44 | </dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 45 | <dependency> |
Smokowski, Steve (ss835w) | b1c2cbe | 2018-09-01 06:58:20 -0400 | [diff] [blame] | 46 | <groupId>org.springframework</groupId> |
| 47 | <artifactId>spring-webmvc</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 50 | <groupId>org.onap.aai.aai-common</groupId> |
| 51 | <artifactId>aai-schema</artifactId> |
Smokowski, Steve (ss835w) | 815bcc5 | 2018-12-04 15:33:20 -0500 | [diff] [blame^] | 52 | <version>1.4.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.modelmapper</groupId> |
| 56 | <artifactId>modelmapper</artifactId> |
| 57 | <version>1.1.0</version> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>com.google.guava</groupId> |
| 61 | <artifactId>guava</artifactId> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 62 | </dependency> |
| 63 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 64 | <groupId>org.apache.commons</groupId> |
| 65 | <artifactId>commons-lang3</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.apache.cxf</groupId> |
| 69 | <artifactId>cxf-rt-rs-client</artifactId> |
Smokowski, Steve (ss835w) | 87c36c7 | 2018-08-10 08:13:07 -0400 | [diff] [blame] | 70 | <version>${cxf.version}</version> |
Smokowski, Steve (ss835w) | e2c7749 | 2018-09-04 15:31:38 -0400 | [diff] [blame] | 71 | <scope>test</scope> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 72 | </dependency> |
| 73 | <dependency> |
Kalkere Ramesh, Sharan (sk720x) | 81e5c5f | 2018-03-28 10:20:33 -0400 | [diff] [blame] | 74 | <groupId>com.shazam</groupId> |
| 75 | <artifactId>shazamcrest</artifactId> |
| 76 | <version>0.11</version> |
| 77 | <scope>test</scope> |
| 78 | <exclusions> |
| 79 | <exclusion> |
| 80 | <groupId>com.google.guava</groupId> |
| 81 | <artifactId>guava</artifactId> |
| 82 | </exclusion> |
| 83 | <exclusion> |
| 84 | <groupId>org.apache.commons</groupId> |
| 85 | <artifactId>commons-lang3</artifactId> |
| 86 | </exclusion> |
| 87 | </exclusions> |
Smokowski, Steve (ss835w) | 815bcc5 | 2018-12-04 15:33:20 -0500 | [diff] [blame^] | 88 | </dependency> |
Kalkere Ramesh, Sharan (sk720x) | 81e5c5f | 2018-03-28 10:20:33 -0400 | [diff] [blame] | 89 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 90 | <groupId>org.slf4j</groupId> |
| 91 | <artifactId>slf4j-ext</artifactId> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 92 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 93 | <dependency> |
| 94 | <groupId>org.slf4j</groupId> |
| 95 | <artifactId>slf4j-api</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 96 | </dependency> |
| 97 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 98 | <groupId>org.springframework.boot</groupId> |
| 99 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 100 | <optional>true</optional> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>net.jodah</groupId> |
| 104 | <artifactId>failsafe</artifactId> |
| 105 | <version>1.1.0</version> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.springframework.security</groupId> |
Smokowski, Steve (ss835w) | 815bcc5 | 2018-12-04 15:33:20 -0500 | [diff] [blame^] | 109 | <artifactId>spring-security-web</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 110 | </dependency> |
Smokowski, Steve (ss835w) | b92b1f8 | 2018-08-30 19:06:46 -0400 | [diff] [blame] | 111 | <dependency> |
| 112 | <groupId>org.onap.logging-analytics</groupId> |
| 113 | <artifactId>logging-slf4j</artifactId> |
Rob Daugherty | 28e0969 | 2018-10-19 11:37:05 -0400 | [diff] [blame] | 114 | <version>1.2.2</version> |
Smokowski, Steve (ss835w) | b92b1f8 | 2018-08-30 19:06:46 -0400 | [diff] [blame] | 115 | </dependency> |
Benjamin, Max (mb388a) | 714f731 | 2018-10-23 09:43:26 -0400 | [diff] [blame] | 116 | <dependency> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 117 | <groupId>org.mockito</groupId> |
| 118 | <artifactId>mockito-core</artifactId> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.json</groupId> |
| 122 | <artifactId>json</artifactId> |
| 123 | </dependency> |
| 124 | <dependency> |
Benjamin, Max (mb388a) | 714f731 | 2018-10-23 09:43:26 -0400 | [diff] [blame] | 125 | <groupId>org.springframework.boot</groupId> |
| 126 | <artifactId>spring-boot-starter-test</artifactId> |
| 127 | <scope>test</scope> |
| 128 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 129 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 130 | <build> |
| 131 | <resources> |
| 132 | <resource> |
| 133 | <directory>src/main/resources</directory> |
| 134 | <filtering>true</filtering> |
| 135 | </resource> |
| 136 | <resource> |
| 137 | <directory>src/main/java</directory> |
| 138 | <includes> |
| 139 | <include>**/*.java</include> |
| 140 | </includes> |
| 141 | </resource> |
Benjamin, Max (mb388a) | 714f731 | 2018-10-23 09:43:26 -0400 | [diff] [blame] | 142 | </resources> |
| 143 | <plugins> |
| 144 | <plugin> |
| 145 | <groupId>org.apache.maven.plugins</groupId> |
| 146 | <artifactId>maven-surefire-plugin</artifactId> |
| 147 | <executions> |
| 148 | <execution> |
| 149 | <id>default-test</id> |
| 150 | <goals> |
| 151 | <goal>test</goal> |
| 152 | </goals> |
| 153 | <configuration> |
| 154 | <includes> |
| 155 | <include>**/NonSpringSuite.java</include> |
| 156 | </includes> |
| 157 | </configuration> |
| 158 | </execution> |
| 159 | <execution> |
| 160 | <id>spring-tests</id> |
| 161 | <goals> |
| 162 | <goal>test</goal> |
| 163 | </goals> |
| 164 | <configuration> |
| 165 | <includes> |
| 166 | <include>**/SpringSuite.java</include> |
| 167 | </includes> |
| 168 | </configuration> |
| 169 | </execution> |
| 170 | </executions> |
| 171 | </plugin> |
| 172 | </plugins> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 173 | </build> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 174 | </project> |