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 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 17 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 21 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 22 | <name>openecomp-sdc</name> |
| 23 | <artifactId>openecomp-sdc</artifactId> |
| 24 | <packaging>pom</packaging> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 25 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 26 | <url>http://maven.apache.org</url> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 27 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.openecomp.sdc</groupId> |
| 30 | <artifactId>sdc-onboarding</artifactId> |
MichaelMorris | 8257692 | 2022-08-15 10:45:48 +0100 | [diff] [blame] | 31 | <version>1.11.7-SNAPSHOT</version> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 32 | <relativePath>../onboarding/pom.xml</relativePath> |
| 33 | </parent> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 34 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 35 | <dependencies> |
vasraz | e3e2db1 | 2020-06-11 12:57:25 +0100 | [diff] [blame] | 36 | <dependency> |
vasraz | 77097d0 | 2020-06-28 19:55:01 +0100 | [diff] [blame] | 37 | <groupId>org.junit.jupiter</groupId> |
| 38 | <artifactId>junit-jupiter</artifactId> |
| 39 | <version>${junitJupiter.version}</version> |
| 40 | <scope>test</scope> |
| 41 | </dependency> |
| 42 | |
| 43 | <dependency> |
| 44 | <groupId>org.mockito</groupId> |
| 45 | <artifactId>mockito-junit-jupiter</artifactId> |
| 46 | <version>${mockitoJupiter.version}</version> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | |
| 50 | <dependency> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 51 | <groupId>com.google.code.bean-matchers</groupId> |
| 52 | <artifactId>bean-matchers</artifactId> |
| 53 | <version>${bean-matchers.version}</version> |
| 54 | <scope>test</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.onap.logging-analytics</groupId> |
| 58 | <artifactId>logging-slf4j</artifactId> |
| 59 | <version>${onap.logging.version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.togglz</groupId> |
| 63 | <artifactId>togglz-core</artifactId> |
| 64 | <version>${togglz.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.togglz</groupId> |
| 68 | <artifactId>togglz-testing</artifactId> |
| 69 | <version>${togglz.version}</version> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 72 | </dependencies> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 73 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 74 | <build> |
| 75 | <plugins> |
| 76 | <plugin> |
| 77 | <groupId>org.apache.maven.plugins</groupId> |
| 78 | <artifactId>maven-jar-plugin</artifactId> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 79 | </plugin> |
| 80 | </plugins> |
| 81 | </build> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 82 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 83 | <modules> |
| 84 | <module>/api</module> |
| 85 | <module>/lib</module> |
| 86 | <module>/tools/swagger-ui</module> |
| 87 | <module>/tools/zusammen-tools</module> |
| 88 | <module>/backend</module> |
andre.schmid | b8bfef3 | 2021-08-12 23:05:15 +0100 | [diff] [blame] | 89 | <module>/dist</module> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 90 | </modules> |
Avi Ziv | c175a0d | 2018-03-15 13:21:44 +0200 | [diff] [blame] | 91 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 92 | <profiles> |
| 93 | <profile> |
| 94 | <id>docker</id> |
| 95 | <activation> |
| 96 | <activeByDefault>false</activeByDefault> |
| 97 | </activation> |
| 98 | <modules> |
| 99 | <module>/dist</module> |
| 100 | </modules> |
| 101 | </profile> |
| 102 | </profiles> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 103 | </project> |
| 104 | |