vempo | a706d71 | 2018-11-06 18:41:14 +0200 | [diff] [blame] | 1 | <!-- |
| 2 | ~ Copyright © 2016-2018 European Support Limited |
| 3 | ~ |
| 4 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ~ you may not use this file except in compliance with the License. |
| 6 | ~ You may obtain a copy of the License at |
| 7 | ~ |
| 8 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ~ |
| 10 | ~ Unless required by applicable law or agreed to in writing, software |
| 11 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ~ See the License for the specific language governing permissions and |
| 14 | ~ limitations under the License. |
| 15 | --> |
| 16 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 17 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 21 | <name>openecomp-sdc</name> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 22 | <artifactId>openecomp-sdc</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 23 | <packaging>pom</packaging> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 24 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 25 | <url>http://maven.apache.org</url> |
| 26 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 27 | <parent> |
| 28 | <groupId>org.openecomp.sdc</groupId> |
| 29 | <artifactId>sdc-onboarding</artifactId> |
Ofir Sonsino | 610ff24 | 2019-07-28 15:44:36 +0300 | [diff] [blame] | 30 | <version>1.5.1-SNAPSHOT</version> |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 31 | <relativePath>../onboarding/pom.xml</relativePath> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 32 | </parent> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 33 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 34 | <dependencies> |
Bartosz Gardziejewski | 7962fe5 | 2019-08-20 15:53:19 +0200 | [diff] [blame] | 35 | |
| 36 | <dependency> |
| 37 | <groupId>com.google.code.bean-matchers</groupId> |
| 38 | <artifactId>bean-matchers</artifactId> |
| 39 | <version>${bean-matchers.version}</version> |
| 40 | <scope>test</scope> |
| 41 | </dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 42 | <dependency> |
talio | ce889ad | 2017-11-12 16:12:35 +0200 | [diff] [blame] | 43 | <groupId>org.togglz</groupId> |
| 44 | <artifactId>togglz-core</artifactId> |
| 45 | <version>${togglz.version}</version> |
| 46 | </dependency> |
talio | ce889ad | 2017-11-12 16:12:35 +0200 | [diff] [blame] | 47 | <dependency> |
| 48 | <groupId>org.togglz</groupId> |
talio | ce889ad | 2017-11-12 16:12:35 +0200 | [diff] [blame] | 49 | <artifactId>togglz-testing</artifactId> |
| 50 | <version>${togglz.version}</version> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 53 | </dependencies> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 54 | |
| 55 | <build> |
| 56 | <plugins> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 57 | <plugin> |
| 58 | <groupId>org.apache.maven.plugins</groupId> |
| 59 | <artifactId>maven-compiler-plugin</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 60 | <version>${mvn.compiler.version}</version> |
Gautam Shah | 3de22e1 | 2018-04-21 16:18:37 +0530 | [diff] [blame] | 61 | </plugin> |
| 62 | <plugin> |
Gautam Shah | b145c08 | 2018-05-27 13:32:07 +0530 | [diff] [blame] | 63 | <groupId>org.apache.maven.plugins</groupId> |
Gautam Shah | b145c08 | 2018-05-27 13:32:07 +0530 | [diff] [blame] | 64 | <artifactId>maven-jar-plugin</artifactId> |
| 65 | <version>${mvn.jar.version}</version> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 66 | </plugin> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 67 | </plugins> |
| 68 | </build> |
| 69 | |
Gautam Shah | 3de22e1 | 2018-04-21 16:18:37 +0530 | [diff] [blame] | 70 | <modules> |
| 71 | <module>/api</module> |
| 72 | <module>/lib</module> |
| 73 | <module>/tools/swagger-ui</module> |
| 74 | <module>/tools/zusammen-tools</module> |
| 75 | <module>/backend</module> |
| 76 | </modules> |
Avi Ziv | c175a0d | 2018-03-15 13:21:44 +0200 | [diff] [blame] | 77 | |
vempo | a706d71 | 2018-11-06 18:41:14 +0200 | [diff] [blame] | 78 | <profiles> |
Avi Ziv | c175a0d | 2018-03-15 13:21:44 +0200 | [diff] [blame] | 79 | <profile> |
| 80 | <id>docker</id> |
| 81 | <activation> |
| 82 | <activeByDefault>false</activeByDefault> |
| 83 | </activation> |
Avi Ziv | c175a0d | 2018-03-15 13:21:44 +0200 | [diff] [blame] | 84 | <modules> |
| 85 | <module>/dist</module> |
| 86 | </modules> |
| 87 | </profile> |
| 88 | </profiles> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 89 | </project> |
| 90 | |