Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <groupId>org.openecomp.sdc.be</groupId> |
| 6 | <artifactId>common-be</artifactId> |
| 7 | |
| 8 | <parent> |
| 9 | <groupId>org.openecomp.sdc</groupId> |
| 10 | <artifactId>sdc-main</artifactId> |
Michael Lando | ebd7c8f | 2017-03-15 20:38:00 +0200 | [diff] [blame^] | 11 | <version>1.1.0-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 12 | </parent> |
| 13 | |
| 14 | |
| 15 | <properties> |
| 16 | <aspectj.version>1.7.4</aspectj.version> |
| 17 | <hibernate-validator.version>5.3.4.Final</hibernate-validator.version> |
| 18 | <groovy.version>2.3.5</groovy.version> |
| 19 | <lucene.version>4.10.2</lucene.version> |
| 20 | <mockito.version>1.9.0</mockito.version> |
| 21 | <regex.version>3.0.3</regex.version> |
| 22 | <codehaus.jackson.core>1.9.2</codehaus.jackson.core> |
| 23 | </properties> |
| 24 | |
| 25 | |
| 26 | <dependencies> |
Michael Lando | 0de99c2 | 2017-02-28 10:54:57 +0200 | [diff] [blame] | 27 | |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 28 | <dependency> |
| 29 | <groupId>org.mockito</groupId> |
| 30 | <artifactId>mockito-all</artifactId> |
| 31 | <version>1.10.19</version> |
| 32 | <scope>provided</scope> |
| 33 | </dependency> |
| 34 | |
| 35 | <dependency> |
| 36 | <groupId>org.testng</groupId> |
| 37 | <artifactId>testng</artifactId> |
| 38 | <version>6.9.10</version> |
| 39 | <scope>test</scope> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>org.apache.commons</groupId> |
| 44 | <artifactId>commons-lang3</artifactId> |
| 45 | <version>${lang3.version}</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | |
Michael Lando | 0de99c2 | 2017-02-28 10:54:57 +0200 | [diff] [blame] | 49 | <!-- yaml to object converter --> |
| 50 | <dependency> |
| 51 | <groupId>org.yaml</groupId> |
| 52 | <artifactId>snakeyaml</artifactId> |
| 53 | <version>1.14</version> |
| 54 | <scope>provided</scope> |
| 55 | </dependency> |
| 56 | |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 57 | <dependency> |
Michael Lando | 9744a93 | 2017-02-28 08:22:59 +0200 | [diff] [blame] | 58 | <groupId>com.google.code.gson</groupId> |
| 59 | <artifactId>gson</artifactId> |
| 60 | <version>2.3.1</version> |
| 61 | <scope>provided</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 64 | <groupId>commons-logging</groupId> |
| 65 | <artifactId>commons-logging</artifactId> |
| 66 | <version>1.2.1-SNAPSHOT</version> |
| 67 | <scope>provided</scope> |
| 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
| 71 | <groupId>commons-codec</groupId> |
| 72 | <artifactId>commons-codec</artifactId> |
| 73 | <version>2.0-SNAPSHOT</version> |
| 74 | <scope>provided</scope> |
| 75 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 76 | <!-- Common of SD&C --> |
| 77 | <dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 78 | <groupId>org.springframework</groupId> |
| 79 | <artifactId>spring-core</artifactId> |
| 80 | <version>${spring.version}</version> |
| 81 | <scope>provided</scope> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.springframework</groupId> |
| 86 | <artifactId>spring-beans</artifactId> |
| 87 | <version>${spring.version}</version> |
| 88 | <scope>provided</scope> |
| 89 | </dependency> |
| 90 | |
| 91 | <dependency> |
| 92 | <groupId>org.springframework</groupId> |
| 93 | <artifactId>spring-context</artifactId> |
| 94 | <version>${spring.version}</version> |
| 95 | <scope>provided</scope> |
| 96 | </dependency> |
| 97 | |
| 98 | <dependency> |
| 99 | <groupId>org.springframework</groupId> |
| 100 | <artifactId>spring-context-support</artifactId> |
| 101 | <version>${spring.version}</version> |
| 102 | <scope>provided</scope> |
| 103 | </dependency> |
| 104 | |
| 105 | <dependency> |
| 106 | <groupId>org.springframework</groupId> |
| 107 | <artifactId>spring-messaging</artifactId> |
| 108 | <version>${spring.version}</version> |
| 109 | <scope>provided</scope> |
| 110 | </dependency> |
| 111 | |
| 112 | <dependency> |
| 113 | <groupId>org.springframework</groupId> |
| 114 | <artifactId>spring-web</artifactId> |
| 115 | <version>${spring.version}</version> |
| 116 | <scope>provided</scope> |
| 117 | </dependency> |
| 118 | |
| 119 | <dependency> |
| 120 | <groupId>org.springframework</groupId> |
| 121 | <artifactId>spring-webmvc</artifactId> |
| 122 | <version>${spring.version}</version> |
| 123 | <scope>provided</scope> |
| 124 | </dependency> |
| 125 | |
| 126 | <dependency> |
| 127 | <groupId>org.springframework</groupId> |
| 128 | <artifactId>spring-aop</artifactId> |
| 129 | <version>${spring.version}</version> |
| 130 | <scope>provided</scope> |
| 131 | </dependency> |
| 132 | |
| 133 | <dependency> |
| 134 | <groupId>org.springframework</groupId> |
| 135 | <artifactId>spring-aspects</artifactId> |
| 136 | <version>${spring.version}</version> |
| 137 | <scope>provided</scope> |
| 138 | </dependency> |
| 139 | |
| 140 | <dependency> |
| 141 | <groupId>org.springframework</groupId> |
| 142 | <artifactId>spring-test</artifactId> |
| 143 | <version>${spring.version}</version> |
| 144 | <scope>test</scope> |
| 145 | </dependency> |
| 146 | |
| 147 | <dependency> |
| 148 | <groupId>org.springframework</groupId> |
| 149 | <artifactId>spring-expression</artifactId> |
| 150 | <version>${spring.version}</version> |
| 151 | <scope>test</scope> |
| 152 | </dependency> |
| 153 | |
| 154 | <dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 155 | <groupId>org.openecomp.sdc</groupId> |
| 156 | <artifactId>common-app-api</artifactId> |
| 157 | <version>${common-app-api.version}</version> |
| 158 | <scope>provided</scope> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <groupId>ch.qos.logback</groupId> |
| 162 | <artifactId>logback-classic</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 163 | <version>${logback.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 164 | <scope>provided</scope> |
| 165 | </dependency> |
| 166 | |
| 167 | <dependency> |
| 168 | <groupId>ch.qos.logback</groupId> |
| 169 | <artifactId>logback-core</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 170 | <version>${logback.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 171 | <scope>provided</scope> |
| 172 | </dependency> |
| 173 | |
| 174 | <dependency> |
| 175 | <groupId>org.slf4j</groupId> |
| 176 | <artifactId>slf4j-api</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 177 | <version>1.7.10</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 178 | <scope>provided</scope> |
| 179 | </dependency> |
| 180 | |
| 181 | <dependency> |
| 182 | <groupId>org.codehaus.jackson</groupId> |
| 183 | <artifactId>jackson-core-asl</artifactId> |
| 184 | <version>${codehaus.jackson.core}</version> |
| 185 | <scope>provided</scope> |
| 186 | </dependency> |
| 187 | |
| 188 | <dependency> |
| 189 | <groupId>com.google.guava</groupId> |
| 190 | <artifactId>guava</artifactId> |
| 191 | <version>${guava.version}</version> |
| 192 | <scope>provided</scope> |
| 193 | </dependency> |
| 194 | |
| 195 | <!-- TEST --> |
| 196 | <dependency> |
| 197 | <groupId>junit</groupId> |
| 198 | <artifactId>junit</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 199 | <version>4.12</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 200 | <scope>test</scope> |
| 201 | </dependency> |
| 202 | |
| 203 | |
| 204 | </dependencies> |
| 205 | <build> |
| 206 | <pluginManagement> |
| 207 | <plugins> |
| 208 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 209 | only. It has no influence on the Maven build itself. --> |
| 210 | <plugin> |
| 211 | <groupId>org.eclipse.m2e</groupId> |
| 212 | <artifactId>lifecycle-mapping</artifactId> |
| 213 | <version>1.0.0</version> |
| 214 | <configuration> |
| 215 | <lifecycleMappingMetadata> |
| 216 | <pluginExecutions> |
| 217 | <pluginExecution> |
| 218 | <pluginExecutionFilter> |
| 219 | <groupId>fr.fastconnect</groupId> |
| 220 | <artifactId>plantuml-maven-plugin</artifactId> |
| 221 | <versionRange>[1.0.0,)</versionRange> |
| 222 | <goals> |
| 223 | <goal>plant</goal> |
| 224 | </goals> |
| 225 | </pluginExecutionFilter> |
| 226 | <action> |
| 227 | <ignore /> |
| 228 | </action> |
| 229 | </pluginExecution> |
| 230 | </pluginExecutions> |
| 231 | </lifecycleMappingMetadata> |
| 232 | </configuration> |
| 233 | </plugin> |
| 234 | |
| 235 | <plugin> |
| 236 | <groupId>org.apache.maven.plugins</groupId> |
| 237 | <artifactId>maven-deploy-plugin</artifactId> |
| 238 | <version>2.7</version> |
| 239 | <configuration> |
| 240 | <skip>true</skip> |
| 241 | </configuration> |
| 242 | </plugin> |
| 243 | </plugins> |
| 244 | </pluginManagement> |
| 245 | </build> |
| 246 | </project> |