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