blob: 6e4a9ad87065eb9007edbe29eb9f3bfe4eca6063 [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<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
AviZi280f8012017-06-09 02:39:56 +03005 <name>openecomp-sdc</name>
Michael Landof5f13c42017-02-19 12:35:04 +02006 <groupId>org.openecomp.sdc</groupId>
7 <artifactId>openecomp-sdc</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +02008 <packaging>pom</packaging>
AviZi280f8012017-06-09 02:39:56 +03009
Michael Landof5f13c42017-02-19 12:35:04 +020010 <url>http://maven.apache.org</url>
11
AviZi280f8012017-06-09 02:39:56 +030012 <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>
Michael Landof5f13c42017-02-19 12:35:04 +020018
19 <modules>
20 <module>/api</module>
21 <module>/lib</module>
22 <module>/configuration</module>
23 <module>/tools/swagger-ui</module>
AviZi280f8012017-06-09 02:39:56 +030024 <module>/tools/migration/1702_to_1707_zusammen</module>
Michael Landof5f13c42017-02-19 12:35:04 +020025 <module>/backend</module>
26 </modules>
27
AviZi280f8012017-06-09 02:39:56 +030028 <dependencies>
29 <dependency>
30 <groupId>com.fasterxml.jackson.core</groupId>
31 <artifactId>jackson-annotations</artifactId>
32 <version>${jackson.version}</version>
33 </dependency>
34 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020035
36 <build>
37 <plugins>
38
39 <!-- ================================================== -->
40 <!-- Set the JDK compiler version. -->
41 <!-- ================================================== -->
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-compiler-plugin</artifactId>
AviZi280f8012017-06-09 02:39:56 +030045 <version>${mvn.compiler.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020046 <inherited>true</inherited>
47 <configuration>
48 <source>${java.source}</source>
49 <target>${java.target}</target>
50 </configuration>
51 </plugin>
52 <!-- blackduck maven plugin -->
53 <!--
54 <plugin>
55 <groupId>com.blackducksoftware.integration</groupId>
56 <artifactId>hub-maven-plugin</artifactId>
AviZi280f8012017-06-09 02:39:56 +030057 <version>${mvn.hub.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020058 <inherited>false</inherited>
59 <configuration>
60 <target>${project.basedir}</target>
61 </configuration>
62 <executions>
63 <execution>
64 <id>create-bdio-file</id>
65 <phase>package</phase>
66 <goals>
67 <goal>createHubOutput</goal>
68 </goals>
69 </execution>
70 </executions>
71 </plugin>-->
AviZi280f8012017-06-09 02:39:56 +030072
73 <plugin>
74 <groupId>org.codehaus.mojo</groupId>
75 <artifactId>license-maven-plugin</artifactId>
76 <version>${mvn.license.version}</version>
77 <configuration>
78 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
79 <processStartTag>============LICENSE_START=======================================================</processStartTag>
80 <processEndTag>============LICENSE_END=========================================================</processEndTag>
81 <sectionDelimiter>================================================================================</sectionDelimiter>
82 <licenseName>apache_v2</licenseName>
83 <inceptionYear>2017</inceptionYear>
84 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
85 <projectName>SDC</projectName>
86 <canUpdateCopyright>true</canUpdateCopyright>
87 <canUpdateDescription>true</canUpdateDescription>
88 <canUpdateLicense>true</canUpdateLicense>
89 <emptyLineAfterHeader>true</emptyLineAfterHeader>
90 <verbose>false</verbose>
91 <includes>
92 <include>**/*.java</include>
93 <include>**/*.js</include>
94 <include>**/*.ts</include>
95 </includes>
96 <roots>
97 <root>src</root>
98 <root>app</root>
99 <root>server-mock</root>
100 <root>typings</root>
101 </roots>
102 </configuration>
103 <executions>
104 <execution>
105 <id>first</id>
106 <goals>
107 <goal>update-file-header</goal>
108 </goals>
109 <!--phase>process-sources</phase-->
110 </execution>
111 </executions>
112 </plugin>
113
Michael Landof5f13c42017-02-19 12:35:04 +0200114 </plugins>
115 </build>
116
117 <!--Added to resolve blackduck operational risks for indirect dependencies referred -->
118 <dependencyManagement>
119 <dependencies>
120 <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
121 <dependency>
122 <groupId>commons-beanutils</groupId>
123 <artifactId>commons-beanutils</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300124 <version>${commons.beanutils.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200125 </dependency>
126 <!-- https://mvnrepository.com/artifact/com.beust/jcommander -->
127 <dependency>
128 <groupId>com.beust</groupId>
129 <artifactId>jcommander</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300130 <version>${jcommander.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200131 </dependency>
132 <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpasyncclient -->
133 <dependency>
134 <groupId>org.apache.httpcomponents</groupId>
135 <artifactId>httpasyncclient</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300136 <version>${httpasyncclient.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200137 </dependency>
138 <!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl -->
139 <dependency>
140 <groupId>com.sun.xml.bind</groupId>
141 <artifactId>jaxb-impl</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300142 <version>${jaxb.impl.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200143 </dependency>
144 <!-- https://mvnrepository.com/artifact/org.beanshell/bsh -->
145 <dependency>
146 <groupId>org.beanshell</groupId>
147 <artifactId>bsh</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300148 <version>${bsh.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200149 </dependency>
150 <!-- https://mvnrepository.com/artifact/commons-digester/commons-digester -->
151 <dependency>
152 <groupId>commons-digester</groupId>
153 <artifactId>commons-digester</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300154 <version>${commons.digester.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200155 </dependency>
156 <!-- https://mvnrepository.com/artifact/com.fasterxml/classmate -->
157 <dependency>
158 <groupId>com.fasterxml</groupId>
159 <artifactId>classmate</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300160 <version>${classmate.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200161 </dependency>
AviZi280f8012017-06-09 02:39:56 +0300162 <!--1702 -->
163 <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
164 <dependency>
165 <groupId>org.slf4j</groupId>
166 <artifactId>slf4j-api</artifactId>
167 <version>${slf4j.version}</version>
168 </dependency>
169 <dependency>
170 <groupId>org.codehaus.groovy</groupId>
171 <artifactId>groovy-all</artifactId>
172 <version>${groovy.version}</version>
173 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +0200174 <dependency>
175 <groupId>org.codehaus.janino</groupId>
176 <artifactId>janino</artifactId>
177 <version>${janino.version}</version>
178 <scope>provided</scope>
179 </dependency>
180 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +0200181 </dependencyManagement>
182
183</project>
184