Disable SecurityFilter
[sdc.git] / openecomp-be / pom.xml
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
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
21     <name>openecomp-sdc</name>
22     <artifactId>openecomp-sdc</artifactId>
23     <packaging>pom</packaging>
24
25     <url>http://maven.apache.org</url>
26
27     <parent>
28         <groupId>org.openecomp.sdc</groupId>
29         <artifactId>sdc-onboarding</artifactId>
30         <version>1.7.0-SNAPSHOT</version>
31         <relativePath>../onboarding/pom.xml</relativePath>
32     </parent>
33
34     <dependencies>
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>
42         <dependency>
43             <groupId>org.onap.logging-analytics</groupId>
44             <artifactId>logging-slf4j</artifactId>
45             <version>${onap.logging.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.togglz</groupId>
49             <artifactId>togglz-core</artifactId>
50             <version>${togglz.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.togglz</groupId>
54             <artifactId>togglz-testing</artifactId>
55             <version>${togglz.version}</version>
56             <scope>test</scope>
57         </dependency>
58     </dependencies>
59
60     <build>
61         <plugins>
62             <plugin>
63                 <groupId>org.apache.maven.plugins</groupId>
64                 <artifactId>maven-compiler-plugin</artifactId>
65                 <version>${mvn.compiler.version}</version>
66             </plugin>
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-jar-plugin</artifactId>
70                 <version>${mvn.jar.version}</version>
71             </plugin>
72         </plugins>
73     </build>
74
75     <modules>
76         <module>/api</module>
77         <module>/lib</module>
78         <module>/tools/swagger-ui</module>
79         <module>/tools/zusammen-tools</module>
80         <module>/backend</module>
81     </modules>
82
83     <profiles>
84         <profile>
85             <id>docker</id>
86             <activation>
87                 <activeByDefault>false</activeByDefault>
88             </activation>
89             <modules>
90                 <module>/dist</module>
91             </modules>
92         </profile>
93     </profiles>
94 </project>
95