9e1516374a0f79f431f576668605447723dc4073
[ccsdk/sli/core.git] / dblib / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/maven-v4_0_0.xsd">
3     <parent>
4         <groupId>org.onap.ccsdk.sli.core</groupId>
5         <artifactId>ccsdk-sli-core</artifactId>
6         <version>0.1.1-SNAPSHOT</version>
7     </parent>
8
9
10     <modelVersion>4.0.0</modelVersion>
11     <packaging>pom</packaging>
12     <groupId>org.onap.ccsdk.sli.core</groupId>
13     <artifactId>dblib</artifactId>
14
15
16     <name>DBLIB Adaptor</name>
17     <description>The DBLIB adaptor allows service logic to access persistent data in a local sql database</description>
18
19     <version>0.1.1-SNAPSHOT</version>
20
21     <build>
22
23         <pluginManagement>
24             <plugins>
25                 <plugin>
26                     <groupId>org.apache.maven.plugins</groupId>
27                     <artifactId>maven-compiler-plugin</artifactId>
28                     <version>${maven.compile.plugin.version}</version>
29                     <configuration>
30                         <source>${java.version.source}</source>
31                         <target>${java.version.target}</target>
32                     </configuration>
33                 </plugin>
34                 <plugin>
35                     <groupId>org.apache.maven.plugins</groupId>
36                     <artifactId>maven-javadoc-plugin</artifactId>
37                     <version>2.10</version>
38
39                     <executions>
40                         <execution>
41                             <id>aggregate</id>
42                             <goals>
43                                 <goal>aggregate</goal>
44                             </goals>
45                             <phase>site</phase>
46
47                         </execution>
48                     </executions>
49                 </plugin>
50                 <plugin>
51                     <artifactId>maven-source-plugin</artifactId>
52                     <version>2.1.1</version>
53                     <executions>
54                         <execution>
55                             <id>bundle-sources</id>
56                             <phase>package</phase>
57                             <goals>
58                                 <!-- produce source artifact for main project sources -->
59                                 <goal>jar-no-fork</goal>
60
61                                 <!-- produce source artifact for project test sources -->
62                                 <goal>test-jar-no-fork</goal>
63                             </goals>
64                         </execution>
65                     </executions>
66                 </plugin>
67             </plugins>
68
69         </pluginManagement>
70     </build>
71     <organization>
72         <name>AT&amp;T</name>
73     </organization>
74   <modules>
75     <module>provider</module>
76     <module>features</module>
77     <module>installer</module>
78   </modules>
79 </project>