Fix build error with GCC6
[profile/ivi/log4cxx.git] / 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/maven-v4_0_0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3   <groupId>log4cxx</groupId>
4   <artifactId>apache-log4cxx</artifactId>
5   <packaging>pom</packaging>
6   <version>0.10.0</version>
7   <name>Apache log4cxx</name>
8   <description>Logging framework for C++.</description>
9   <url>http://logging.apache.org:80/log4cxx</url>
10   <issueManagement>
11     <system>JIRA</system>
12     <url>http://issues.apache.org/jira/</url>
13   </issueManagement>
14 <mailingLists>
15    <mailingList>
16       <name>log4cxx-user : log4cxx usage</name>
17       <subscribe>log4cxx-user-subscribe@logging.apache.org</subscribe>
18       <unsubscribe>log4cxx-user-unsubscribe@logging.apache.org</unsubscribe>
19       <post>log4cxx-user@logging.apache.org</post>
20       <archive>http://mail-archives.apache.org/mod_mbox/logging-log4cxx-user/</archive>
21       <otherArchives>
22           <otherArchive>http://markmail.org/search/list:org.apache.logging.log4cxx-user</otherArchive>
23           <otherArchive>http://marc.info/?l=log4cxx-user</otherArchive>
24           <otherArchive>http://dir.gmane.org/gmane.comp.apache.logging.log4cxx.user</otherArchive>
25       </otherArchives>
26    </mailingList>
27    <mailingList>
28       <name>log4cxx-dev : log4cxx development</name>
29       <subscribe>log4cxx-dev-subscribe@logging.apache.org</subscribe>
30       <unsubscribe>log4cxx-dev-unsubscribe@logging.apache.org</unsubscribe>
31       <post>log4cxx-dev@logging.apache.org</post>
32       <archive>http://mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/</archive>
33       <otherArchives>
34           <otherArchive>http://markmail.org/search/list:org.apache.logging.log4cxx-dev</otherArchive>
35           <otherArchive>http://marc.info/?l=log4cxx-dev</otherArchive>
36           <otherArchive>http://dir.gmane.org/gmane.comp.jakarta.log4j.devel</otherArchive>
37       </otherArchives>
38    </mailingList>
39 </mailingLists>
40 <licenses>
41         <license>
42                 <name>Apache License, Version 2.0</name>
43                 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
44                 <distribution>repo</distribution>
45         </license>
46 </licenses>
47 <scm>
48         <connection>scm:svn:http://svn.apache.org/repos/asf/logging/log4cxx/tags/v0_10_0-rc8</connection>
49         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/logging/log4cxx/tags/v0_10_0-rc8</developerConnection>
50         <url>http://svn.apache.org/viewcvs.cgi/logging/log4cxx/tags/v0_10_0-rc8</url>
51 </scm>
52 <organization>
53     <name>Apache Software Foundation</name>
54     <url>http://www.apache.org</url>
55 </organization>
56 <build>
57     <plugins>
58       <plugin>
59         <artifactId>maven-antrun-plugin</artifactId>
60         <executions>
61           <execution>
62             <phase>compile</phase>
63             <id>compile</id>
64             <configuration>
65                 <tasks>
66                    <ant target="build" />
67                 </tasks>
68             </configuration>
69             <goals>
70               <goal>run</goal>
71             </goals>
72           </execution>
73           <execution>
74             <phase>test-compile</phase>
75             <id>test-compile</id>
76             <configuration>
77                 <tasks>
78                    <ant target="test-compile" />
79                 </tasks>
80             </configuration>
81             <goals>
82               <goal>run</goal>
83             </goals>
84           </execution>
85           <execution>
86             <phase>test</phase>
87             <id>test</id>
88             <configuration>
89                 <tasks>
90                     <ant target="check" />
91                 </tasks>
92             </configuration>
93             <goals>
94               <goal>run</goal>
95             </goals>
96           </execution>
97           <execution>
98             <phase>package</phase>
99             <id>autogen</id>
100             <configuration>
101                 <tasks>
102                    <ant target="autogen" />
103                 </tasks>
104             </configuration>
105             <goals>
106               <goal>run</goal>
107             </goals>
108           </execution>
109                   <execution>
110             <phase>site</phase>
111             <id>site</id>
112             <configuration>
113                 <tasks>
114                     <ant target="site" />
115                     <taskdef name="replaceregexp" classname="org.apache.tools.ant.taskdefs.optional.ReplaceRegExp" />                
116                    <replaceregexp file="target/site/source-repository.html" match="/tags/[^ &quot;'&lt;]*" replace="/trunk" flags="g" />
117                 <replaceregexp match="Generated on .* for " replace="Generated for " flags="g">
118                     <fileset dir="target/site/apidocs" includes="**/*.html" />
119       </replaceregexp>
120                 </tasks>
121             </configuration>
122             <goals>
123               <goal>run</goal>
124             </goals>
125           </execution>
126           <execution>
127             <phase>post-site</phase>
128             <id>post-site</id>
129             <configuration>
130                 <tasks>
131                    <ant target="post-site" />
132                 </tasks>
133             </configuration>
134             <goals>
135               <goal>run</goal>
136             </goals>
137           </execution>
138           <execution>
139             <phase>site-deploy</phase>
140             <id>site-deploy</id>
141             <configuration>
142                 <tasks>
143                    <ant target="site-deploy" />
144                 </tasks>
145             </configuration>
146             <goals>
147               <goal>run</goal>
148             </goals>
149           </execution>
150         </executions>
151        <dependencies>
152           <dependency>
153             <groupId>ant</groupId>
154             <artifactId>ant-nodeps</artifactId>
155             <version>1.6.5</version>
156           </dependency>
157           <dependency>
158             <groupId>ant-contrib</groupId>
159             <artifactId>ant-contrib</artifactId>
160             <version>1.0b2</version>
161           </dependency>
162           <dependency>
163             <groupId>ant-contrib</groupId>
164             <artifactId>cpptasks</artifactId>
165             <version>1.0b5</version>
166           </dependency>
167         </dependencies>
168       </plugin>  
169           <plugin>
170          <artifactId>maven-assembly-plugin</artifactId>
171          <configuration>
172            <descriptors>
173               <descriptor>src/assembly/source.xml</descriptor>
174            </descriptors>
175            <appendAssemblyId>false</appendAssemblyId>
176         </configuration>
177         <executions>
178             <execution>
179                 <goals>
180                     <goal>assembly</goal>
181                 </goals>
182             </execution>
183         </executions>
184          </plugin>
185       <plugin>
186         <groupId>org.codehaus.mojo</groupId>
187         <artifactId>rat-maven-plugin</artifactId>
188       </plugin>             
189     </plugins>
190 </build>
191   <dependencies>
192       <dependency>
193         <groupId>log4j</groupId>
194         <artifactId>log4j</artifactId>
195         <version>1.2.14</version>
196         <scope>test</scope>
197       </dependency>      
198   </dependencies>
199   <reporting>
200     <excludeDefaults>true</excludeDefaults>  
201     <plugins>
202       <plugin>
203         <artifactId>maven-project-info-reports-plugin</artifactId>
204         <reportSets>
205           <reportSet>
206             <reports>
207               <report>scm</report>
208               <report>dependencies</report>
209               <report>issue-tracking</report>
210               <report>mailing-list</report>
211               <report>license</report>
212             </reports>
213           </reportSet>
214         </reportSets>
215       </plugin>
216       <plugin>
217           <artifactId>maven-release-plugin</artifactId>
218           <configuration>
219               <goals>site-deploy assembly:assembly</goals>
220           </configuration>
221       </plugin>
222       <plugin>
223         <artifactId>maven-changes-plugin</artifactId>
224         <reportSets>
225           <reportSet>
226             <reports>
227               <report>changes-report</report>
228             </reports>
229           </reportSet>
230         </reportSets>
231         <configuration>
232                 <issueLinkTemplate>%URL%/browse/%ISSUE%</issueLinkTemplate>
233         </configuration>
234       </plugin>      
235     </plugins>
236   </reporting>
237  <distributionManagement>
238     <repository>
239         <id>tmp.repo</id>
240         <url>file:///tmp</url>
241     </repository>
242     <site>
243       <id>logging.site</id>
244       <url>file:///${user.dir}/target/site-deploy</url>
245     </site>
246   </distributionManagement> 
247 </project>