DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_catalog / db / 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-DB</artifactId>
9   <packaging>jar</packaging>
10   <name>DCAE DT Catalog database</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
77               <plugin>
78                 <groupId>org.apache.maven.plugins</groupId>
79                 <artifactId>maven-assembly-plugin</artifactId>
80               <version>2.6</version>
81             <configuration>
82             <descriptorRefs>
83                     <descriptorRef>jar-with-dependencies</descriptorRef>
84                 </descriptorRefs>
85                   <archive>
86                   <manifest>
87                   <mainClass>org.onap.sdc.dcae.db.neo4j.Modeled</mainClass>
88               </manifest>
89                                                         <manifestEntries>
90                 <Implementation-Build>${buildNumber}</Implementation-Build>
91                                                         </manifestEntries>
92                   </archive>
93               </configuration>
94             <executions>
95             <execution>
96                     <id>make-assembly</id> <!-- this is used for inheritance merges -->
97                   <phase>package</phase> <!-- bind to the packaging phase -->
98                 <goals>
99                 <goal>single</goal>
100                 </goals>
101             </execution>
102                 </executions>
103         </plugin>
104
105             </plugins>
106           </build>
107   <dependencies>
108         <dependency>
109                 <groupId>org.apache.httpcomponents</groupId>
110                   <artifactId>httpasyncclient</artifactId>
111                         <version>4.1</version>
112                 </dependency>
113                 <dependency>
114                         <groupId>commons-io</groupId>
115                         <artifactId>commons-io</artifactId>
116                         <version>2.4</version>
117                 </dependency>
118                 <dependency>
119                         <groupId>commons-cli</groupId>
120                         <artifactId>commons-cli</artifactId>
121                         <version>1.3</version>
122                 </dependency>
123                 <dependency>
124                         <groupId>commons-jxpath</groupId>
125                         <artifactId>commons-jxpath</artifactId>
126                         <version>1.3</version>
127                 </dependency>
128                 <dependency>
129                         <groupId>com.google.guava</groupId>
130                         <artifactId>guava</artifactId>
131                         <version>17.0</version>
132                 </dependency>
133                 <dependency>
134                         <groupId>org.yaml</groupId>
135                         <artifactId>snakeyaml</artifactId>
136                         <version>1.17</version>
137                 </dependency>
138                 <dependency>
139                         <groupId>org.json</groupId>
140                         <artifactId>json</artifactId>
141                         <version>20160212</version>
142                 </dependency>
143                 <dependency>
144         <groupId>com.github.wnameless</groupId>
145         <artifactId>json-flattener</artifactId>
146         <version>0.2.2</version>
147                 </dependency>
148   </dependencies>
149 </project>