DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_catalog / commons / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>org.onap.sdc.dcae</groupId>
5     <artifactId>DCAE-DT-Catalog</artifactId>
6     <version>1806.0.1-SNAPSHOT</version>
7   </parent>
8   <artifactId>DCAE-DT-Catalog-Commons</artifactId>
9   <packaging>jar</packaging>
10   <name>DCAE DT Catalog Commons</name>
11
12         <build>
13             <sourceDirectory>src/main/java</sourceDirectory>
14             <plugins>
15               <plugin>
16                 <artifactId>maven-compiler-plugin</artifactId>
17                 <version>3.1</version>
18                 <configuration>
19                   <source>1.8</source>
20                   <target>1.8</target>
21                   <encoding>${project.build.sourceEncoding}</encoding>
22                 </configuration>
23               </plugin>
24               <plugin>
25                 <groupId>org.apache.maven.plugins</groupId>
26                 <artifactId>maven-dependency-plugin</artifactId>
27                 <version>2.10</version>
28                 <executions>
29                   <execution>
30                     <id>copy-dependencies</id>
31                     <phase>package</phase>
32                     <goals>
33                       <goal>copy-dependencies</goal>
34                     </goals>
35                     <configuration>
36                       <outputDirectory>${project.build.directory}/deps</outputDirectory>
37                       <overWriteReleases>false</overWriteReleases>
38                       <overWriteSnapshots>false</overWriteSnapshots>
39                       <overWriteIfNewer>true</overWriteIfNewer>
40                     </configuration>
41                   </execution>
42                 </executions>
43               </plugin>
44         <plugin>
45                 <groupId>org.codehaus.mojo</groupId>
46                 <artifactId>buildnumber-maven-plugin</artifactId>
47               <version>1.4</version>
48             <executions>
49             <execution>
50                     <phase>validate</phase>
51                   <goals>
52                   <goal>create</goal>
53                   </goals>
54               </execution>
55           </executions>
56                 <configuration>
57                 <doCheck>false</doCheck>
58                 <doUpdate>false</doUpdate>
59                 </configuration>
60         </plugin>
61                                 <plugin>
62                 <groupId>org.apache.maven.plugins</groupId>
63                 <artifactId>maven-jar-plugin</artifactId>
64                 <version>2.1</version>
65                 <configuration>
66                 <archive>
67                 <manifest>
68                 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
69                 </manifest>
70                 <manifestEntries>
71                 <Implementation-Build>${buildNumber}</Implementation-Build>
72                 </manifestEntries>
73                 </archive>
74                 </configuration>
75                                 </plugin>
76                 </plugins>
77           </build>
78   <dependencies>
79         <dependency>
80                 <groupId>org.apache.httpcomponents</groupId>
81                   <artifactId>httpasyncclient</artifactId>
82                         <version>4.1</version>
83                 </dependency>
84                 <dependency>
85                         <groupId>commons-io</groupId>
86                         <artifactId>commons-io</artifactId>
87                         <version>2.4</version>
88                 </dependency>
89                 <dependency>
90                         <groupId>commons-cli</groupId>
91                         <artifactId>commons-cli</artifactId>
92                         <version>1.3</version>
93                 </dependency>
94                 <dependency>
95         <groupId>commons-beanutils</groupId>
96         <artifactId>commons-beanutils</artifactId>
97         <version>1.9.3</version>
98                 </dependency>
99                 <dependency>
100                         <groupId>commons-jxpath</groupId>
101                         <artifactId>commons-jxpath</artifactId>
102                         <version>1.3</version>
103                 </dependency>
104                 <dependency>
105                         <groupId>com.google.guava</groupId>
106                         <artifactId>guava</artifactId>
107                         <version>17.0</version>
108                 </dependency>
109                 <dependency>
110                         <groupId>org.yaml</groupId>
111                         <artifactId>snakeyaml</artifactId>
112                         <version>1.17</version>
113                 </dependency>
114                 <dependency>
115                         <groupId>org.json</groupId>
116                         <artifactId>json</artifactId>
117                         <version>20160212</version>
118                 </dependency>
119                 <dependency>
120                         <groupId>com.fasterxml.jackson.core</groupId>
121                         <artifactId>jackson-databind</artifactId>
122                         <version>2.7.8</version>
123                 </dependency>
124                 <dependency>
125         <groupId>com.github.wnameless</groupId>
126         <artifactId>json-flattener</artifactId>
127         <version>0.2.2</version>
128                 </dependency>
129                 <dependency>
130                         <groupId>org.springframework</groupId>
131                         <artifactId>spring-web</artifactId>
132                         <version>4.3.5.RELEASE</version>
133                 </dependency>
134   </dependencies>
135 </project>