[sdc] update code of sdc
[sdc.git] / openecomp-be / pom.xml
1 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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     <name>openecomp-sdc</name>
6     <groupId>org.openecomp.sdc</groupId>
7     <artifactId>openecomp-sdc</artifactId>
8     <packaging>pom</packaging>
9
10     <url>http://maven.apache.org</url>
11
12     <parent>
13         <groupId>org.openecomp.sdc</groupId>
14         <artifactId>sdc-onboarding</artifactId>
15         <version>1.1.0-SNAPSHOT</version>
16         <relativePath>../onboarding</relativePath>
17     </parent>
18
19     <modules>
20         <module>/api</module>
21         <module>/lib</module>
22         <module>/configuration</module>
23         <module>/tools/swagger-ui</module>
24         <module>/tools/migration/1702_to_1707_zusammen</module>
25         <module>/tools/zusammen-tools</module>
26         <module>/backend</module>
27     </modules>
28
29     <dependencies>
30         <dependency>
31             <groupId>com.fasterxml.jackson.core</groupId>
32             <artifactId>jackson-annotations</artifactId>
33             <version>${jackson.version}</version>
34         </dependency>
35     </dependencies>
36
37     <build>
38         <plugins>
39
40             <!-- ================================================== -->
41             <!-- Set the JDK compiler version.                      -->
42             <!-- ================================================== -->
43             <plugin>
44                 <groupId>org.apache.maven.plugins</groupId>
45                 <artifactId>maven-compiler-plugin</artifactId>
46                 <version>${mvn.compiler.version}</version>
47                 <inherited>true</inherited>
48                 <configuration>
49                     <source>${java.source}</source>
50                     <target>${java.target}</target>
51                 </configuration>
52             </plugin>
53             <!-- blackduck maven plugin -->
54             <!--
55             <plugin>
56                 <groupId>com.blackducksoftware.integration</groupId>
57                 <artifactId>hub-maven-plugin</artifactId>
58                 <version>${mvn.hub.version}</version>
59                 <inherited>false</inherited>
60                 <configuration>
61                     <target>${project.basedir}</target>
62                 </configuration>
63                 <executions>
64                     <execution>
65                         <id>create-bdio-file</id>
66                         <phase>package</phase>
67                         <goals>
68                             <goal>createHubOutput</goal>
69                         </goals>
70                     </execution>
71                 </executions>
72             </plugin>-->
73
74             <plugin>
75                 <groupId>org.codehaus.mojo</groupId>
76                 <artifactId>license-maven-plugin</artifactId>
77                 <version>${mvn.license.version}</version>
78                 <configuration>
79                     <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
80                     <processStartTag>============LICENSE_START=======================================================</processStartTag>
81                     <processEndTag>============LICENSE_END=========================================================</processEndTag>
82                     <sectionDelimiter>================================================================================</sectionDelimiter>
83                     <licenseName>apache_v2</licenseName>
84                     <inceptionYear>2017</inceptionYear>
85                     <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
86                     <projectName>SDC</projectName>
87                     <canUpdateCopyright>true</canUpdateCopyright>
88                     <canUpdateDescription>true</canUpdateDescription>
89                     <canUpdateLicense>true</canUpdateLicense>
90                     <emptyLineAfterHeader>true</emptyLineAfterHeader>
91                     <verbose>false</verbose>
92                     <includes>
93                         <include>**/*.java</include>
94                         <include>**/*.js</include>
95                         <include>**/*.ts</include>
96                     </includes>
97                     <roots>
98                         <root>src</root>
99                         <root>app</root>
100                         <root>server-mock</root>
101                         <root>typings</root>
102                     </roots>
103                 </configuration>
104                 <executions>
105                     <execution>
106                         <id>first</id>
107                         <goals>
108                             <goal>update-file-header</goal>
109                         </goals>
110                         <!--phase>process-sources</phase-->
111                     </execution>
112                 </executions>
113             </plugin>
114
115         </plugins>
116     </build>
117
118     <!--Added to resolve blackduck operational risks for indirect dependencies referred -->
119     <dependencyManagement>
120         <dependencies>
121             <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
122             <dependency>
123                 <groupId>commons-beanutils</groupId>
124                 <artifactId>commons-beanutils</artifactId>
125                 <version>${commons.beanutils.version}</version>
126             </dependency>
127             <!-- https://mvnrepository.com/artifact/com.beust/jcommander -->
128             <dependency>
129                 <groupId>com.beust</groupId>
130                 <artifactId>jcommander</artifactId>
131                 <version>${jcommander.version}</version>
132             </dependency>
133             <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpasyncclient -->
134             <dependency>
135                 <groupId>org.apache.httpcomponents</groupId>
136                 <artifactId>httpasyncclient</artifactId>
137                 <version>${httpasyncclient.version}</version>
138             </dependency>
139             <!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl -->
140             <dependency>
141                 <groupId>com.sun.xml.bind</groupId>
142                 <artifactId>jaxb-impl</artifactId>
143                 <version>${jaxb.impl.version}</version>
144             </dependency>
145             <!-- https://mvnrepository.com/artifact/org.beanshell/bsh -->
146             <dependency>
147                 <groupId>org.beanshell</groupId>
148                 <artifactId>bsh</artifactId>
149                 <version>${bsh.version}</version>
150             </dependency>
151             <!-- https://mvnrepository.com/artifact/commons-digester/commons-digester -->
152             <dependency>
153                 <groupId>commons-digester</groupId>
154                 <artifactId>commons-digester</artifactId>
155                 <version>${commons.digester.version}</version>
156             </dependency>
157             <!-- https://mvnrepository.com/artifact/com.fasterxml/classmate -->
158             <dependency>
159                 <groupId>com.fasterxml</groupId>
160                 <artifactId>classmate</artifactId>
161                 <version>${classmate.version}</version>
162             </dependency>
163             <!--1702 -->
164             <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
165             <dependency>
166                 <groupId>org.slf4j</groupId>
167                 <artifactId>slf4j-api</artifactId>
168                 <version>${slf4j.version}</version>
169             </dependency>
170             <dependency>
171                 <groupId>org.codehaus.groovy</groupId>
172                 <artifactId>groovy-all</artifactId>
173                 <version>${groovy.version}</version>
174             </dependency>
175             <dependency>
176                 <groupId>org.codehaus.janino</groupId>
177                 <artifactId>janino</artifactId>
178                 <version>${janino.version}</version>
179                 <scope>provided</scope>
180             </dependency>
181         </dependencies>
182     </dependencyManagement>
183
184 </project>
185