Eliminate ranges
[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.2-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.2-SNAPSHOT</version>
20
21
22
23     <build>
24         <pluginManagement>
25             <plugins>
26                 <plugin>
27                     <groupId>org.apache.maven.plugins</groupId>
28                     <artifactId>maven-compiler-plugin</artifactId>
29                     <version>${maven.compile.plugin.version}</version>
30                     <configuration>
31                         <source>${java.version.source}</source>
32                         <target>${java.version.target}</target>
33                     </configuration>
34                 </plugin>
35                 <plugin>
36                     <groupId>org.apache.maven.plugins</groupId>
37                     <artifactId>maven-javadoc-plugin</artifactId>
38                     <version>2.10</version>
39
40                     <executions>
41                         <execution>
42                             <id>aggregate</id>
43                             <goals>
44                                 <goal>aggregate</goal>
45                             </goals>
46                             <phase>site</phase>
47
48                         </execution>
49
50                     </executions>
51                 </plugin>
52                 <plugin>
53                     <artifactId>maven-source-plugin</artifactId>
54                     <version>2.1.1</version>
55                     <executions>
56                         <execution>
57                             <id>bundle-sources</id>
58                             <phase>package</phase>
59                             <goals>
60                                 <!-- produce source artifact for main project sources -->
61                                 <goal>jar-no-fork</goal>
62
63                                 <!-- produce source artifact for project test sources -->
64                                 <goal>test-jar-no-fork</goal>
65                             </goals>
66                         </execution>
67                     </executions>
68                 </plugin>
69             </plugins>
70
71         </pluginManagement>
72     </build>
73     <organization>
74         <name>OpenECOMP</name>
75     </organization>
76   <modules>
77     <module>provider</module>
78     <module>features</module>
79     <module>installer</module>
80   </modules>
81 </project>