[SDNC-5] Rebase sdnc-core
[sdnc/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.openecomp.sdnc.core</groupId>
5         <artifactId>sdnc-core</artifactId>
6         <version>1.1.0-SNAPSHOT</version>
7     </parent>
8
9
10     <modelVersion>4.0.0</modelVersion>
11     <packaging>pom</packaging>
12     <groupId>org.openecomp.sdnc.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>1.1.0-SNAPSHOT</version>
20
21     <build>
22     <plugins>
23                 <plugin>
24
25                 <groupId>org.codehaus.mojo</groupId>
26
27                 <artifactId>license-maven-plugin</artifactId>
28
29                 <version>1.9</version>
30
31                 <configuration>
32
33                     <licenseName>apache_v2</licenseName>
34
35                     <inceptionYear>2016</inceptionYear>
36
37                     <organizationName>AT&amp;T</organizationName>
38
39                     <projectName>openecomp</projectName>
40
41                     <roots>
42
43                         <root>src/main/java</root>
44
45                     </roots>
46
47                     <excludes>
48
49                         <exclude>*.png</exclude>
50
51                     </excludes>
52
53                 </configuration>
54
55             </plugin>
56     </plugins>
57
58         <pluginManagement>
59             <plugins>
60                 <plugin>
61                     <groupId>org.apache.maven.plugins</groupId>
62                     <artifactId>maven-site-plugin</artifactId>
63                     <version>3.4</version>
64                     <dependencies>
65                         <dependency><!-- add support for ssh/scp -->
66                             <groupId>org.apache.maven.wagon</groupId>
67                             <artifactId>wagon-ssh</artifactId>
68                             <version>1.0</version>
69                         </dependency>
70                     </dependencies>
71                 </plugin>
72                 <plugin>
73                     <groupId>org.apache.maven.plugins</groupId>
74                     <artifactId>maven-compiler-plugin</artifactId>
75                     <version>${maven.compile.plugin.version}</version>
76                     <configuration>
77                         <source>${java.version.source}</source>
78                         <target>${java.version.target}</target>
79                     </configuration>
80                 </plugin>
81                 <plugin>
82                     <groupId>org.apache.maven.plugins</groupId>
83                     <artifactId>maven-javadoc-plugin</artifactId>
84                     <version>2.10</version>
85
86                     <executions>
87                         <execution>
88                             <id>aggregate</id>
89                             <goals>
90                                 <goal>aggregate</goal>
91                             </goals>
92                             <phase>site</phase>
93
94                         </execution>
95                     </executions>
96                 </plugin>
97                 <plugin>
98                     <artifactId>maven-source-plugin</artifactId>
99                     <version>2.1.1</version>
100                     <executions>
101                         <execution>
102                             <id>bundle-sources</id>
103                             <phase>package</phase>
104                             <goals>
105                                 <!-- produce source artifact for main project sources -->
106                                 <goal>jar-no-fork</goal>
107
108                                 <!-- produce source artifact for project test sources -->
109                                 <goal>test-jar-no-fork</goal>
110                             </goals>
111                         </execution>
112                     </executions>
113                 </plugin>
114             </plugins>
115
116         </pluginManagement>
117     </build>
118     <organization>
119         <name>AT&amp;T</name>
120     </organization>
121   <modules>
122     <module>common</module>
123     <module>provider</module>
124     <module>features</module>
125     <module>installer</module>
126   </modules>
127 </project>