[RENUMBER] Roll to next snapshot
[sdnc/core.git] / filters / 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
4     <parent>
5         <groupId>org.openecomp.sdnc.core</groupId>
6         <artifactId>sdnc-core</artifactId>
7         <version>1.1.1-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <packaging>pom</packaging>
12     <groupId>org.openecomp.sdnc.core</groupId>
13     <artifactId>filters</artifactId>
14
15
16     <name>Filters</name>
17     <description>Servlet filter to implement ECOMP logging spec</description>
18
19     <version>1.1.1-SNAPSHOT</version>
20
21
22
23     <build>
24         <pluginManagement>
25             <plugins>
26                 <plugin>
27                     <groupId>org.apache.maven.plugins</groupId>
28                     <artifactId>maven-site-plugin</artifactId>
29                     <version>3.4</version>
30                     <dependencies>
31                         <dependency><!-- add support for ssh/scp -->
32                             <groupId>org.apache.maven.wagon</groupId>
33                             <artifactId>wagon-ssh</artifactId>
34                             <version>1.0</version>
35                         </dependency>
36                     </dependencies>
37                 </plugin>
38                 <plugin>
39                     <groupId>org.apache.maven.plugins</groupId>
40                     <artifactId>maven-compiler-plugin</artifactId>
41                     <version>${maven.compile.plugin.version}</version>
42                     <configuration>
43                         <source>${java.version.source}</source>
44                         <target>${java.version.target}</target>
45                     </configuration>
46                 </plugin>
47                 <plugin>
48                     <groupId>org.apache.maven.plugins</groupId>
49                     <artifactId>maven-javadoc-plugin</artifactId>
50                     <version>2.10</version>
51
52                     <executions>
53                         <execution>
54                             <id>aggregate</id>
55                             <goals>
56                                 <goal>aggregate</goal>
57                             </goals>
58                             <phase>site</phase>
59
60                         </execution>
61
62                     </executions>
63                 </plugin>
64                 <plugin>
65                     <artifactId>maven-source-plugin</artifactId>
66                     <version>2.1.1</version>
67                     <executions>
68                         <execution>
69                             <id>bundle-sources</id>
70                             <phase>package</phase>
71                             <goals>
72                                 <!-- produce source artifact for main project sources -->
73                                 <goal>jar-no-fork</goal>
74
75                                 <!-- produce source artifact for project test sources -->
76                                 <goal>test-jar-no-fork</goal>
77                             </goals>
78                         </execution>
79                     </executions>
80                 </plugin>
81             </plugins>
82
83         </pluginManagement>
84     </build>
85     <organization>
86         <name>OpenECOMP</name>
87     </organization>
88   <modules>
89     <module>provider</module>
90     <module>features</module>
91     <module>installer</module>
92   </modules>
93 </project>