1 <?xml version="1.0"?> 2 <!-- 3 Licensed to the Apache Software Foundation (ASF) under one or more 4 contributor license agreements. See the NOTICE file distributed with 5 this work for additional information regarding copyright ownership. 6 The ASF licenses this file to You under the Apache License, Version 2.0 7 (the "License"); you may not use this file except in compliance with 8 the License. You may obtain a copy of the License at 9 10 http://www.apache.org/licenses/LICENSE-2.0 11 12 Unless required by applicable law or agreed to in writing, software 13 distributed under the License is distributed on an "AS IS" BASIS, 14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 See the License for the specific language governing permissions and 16 limitations under the License. 17 --> 18 <project 19 xmlns="http://maven.apache.org/POM/4.0.0" 20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 22 <parent> 23 <groupId>org.apache.commons</groupId> 24 <artifactId>commons-parent</artifactId> 25 <version>11</version> 26 </parent> 27 <modelVersion>4.0.0</modelVersion> 28 <groupId>commons-beanutils</groupId> 29 <artifactId>commons-beanutils</artifactId> 30 <version>1.8.0</version> 31 <name>Commons BeanUtils</name> 32 33 <inceptionYear>2000</inceptionYear> 34 <description>BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection.</description> 35 36 <url>http://commons.apache.org/beanutils/</url> 37 38 <issueManagement> 39 <system>jira</system> 40 <url>http://issues.apache.org/jira/browse/BEANUTILS</url> 41 </issueManagement> 42 43 <scm> 44 <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/beanutils/trunk/</connection> 45 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/beanutils/trunk/</developerConnection> 46 <url>http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/</url> 47 </scm> 48 49 <developers> 50 <developer> 51 <name>Robert Burrell Donkin</name> 52 <id>rdonkin</id> 53 <email>rdonkin (a] apache.org</email> 54 <organization>Apache Software Foundation</organization> 55 </developer> 56 <developer> 57 <name>dIon Gillard</name> 58 <id>dion</id> 59 <email>dion (a] apache.org</email> 60 <organization>Apache Software Foundation</organization> 61 </developer> 62 <developer> 63 <name>Craig McClanahan</name> 64 <id>craigmcc</id> 65 <email>craigmcc (a] apache.org</email> 66 <organization>Apache Software Foundation</organization> 67 </developer> 68 <developer> 69 <name>Geir Magnusson Jr.</name> 70 <id>geirm</id> 71 <email>geirm (a] apache.org</email> 72 <organization>Apache Software Foundation</organization> 73 </developer> 74 <developer> 75 <name>Scott Sanders</name> 76 <id>sanders</id> 77 <email>sanders (a] apache.org</email> 78 <organization>Apache Software Foundation</organization> 79 </developer> 80 <developer> 81 <name>James Strachan</name> 82 <id>jstrachan</id> 83 <email>jstrachan (a] apache.org</email> 84 <organization>Apache Software Foundation</organization> 85 </developer> 86 <developer> 87 <name>Rodney Waldhoff</name> 88 <id>rwaldhoff</id> 89 <email>rwaldhoff (a] apache.org</email> 90 <organization>Apache Software Foundation</organization> 91 </developer> 92 <developer> 93 <name>Martin van den Bemt</name> 94 <id>mvdb</id> 95 <email>mvdb (a] apache.org</email> 96 <organization>Apache Software Foundation</organization> 97 </developer> 98 <developer> 99 <name>Yoav Shapira</name> 100 <id>yoavs</id> 101 <email>yoavs (a] apache.org</email> 102 <organization>Apache Software Foundation</organization> 103 </developer> 104 <developer> 105 <name>Niall Pemberton</name> 106 <id>niallp</id> 107 <email>niallp at apache dot org</email> 108 <organization>Apache Software Foundation</organization> 109 </developer> 110 <developer> 111 <name>Simon Kitching</name> 112 <id>skitching</id> 113 <email>skitching (a] apache.org</email> 114 <organization>Apache Software Foundation</organization> 115 </developer> 116 <developer> 117 <name>James Carman</name> 118 <id>jcarman</id> 119 <email>jcarman (a] apache.org</email> 120 <organization>Apache Software Foundation</organization> 121 </developer> 122 </developers> 123 124 <contributors> 125 <contributor> 126 <name>Paul Jack</name> 127 <email></email> 128 </contributor> 129 <contributor> 130 <name>Stephen Colebourne</name> 131 <email></email> 132 </contributor> 133 <contributor> 134 <name>Berin Loritsch</name> 135 <email></email> 136 </contributor> 137 </contributors> 138 139 <dependencies> 140 <dependency> 141 <groupId>commons-logging</groupId> 142 <artifactId>commons-logging</artifactId> 143 <version>1.1.1</version> 144 </dependency> 145 <dependency> 146 <groupId>commons-collections</groupId> 147 <artifactId>commons-collections</artifactId> 148 <version>3.2.1</version> 149 <optional>true</optional> 150 </dependency> 151 <dependency> 152 <groupId>commons-collections</groupId> 153 <artifactId>commons-collections-testframework</artifactId> 154 <version>3.2.1</version> 155 <scope>test</scope> 156 </dependency> 157 <dependency> 158 <groupId>junit</groupId> 159 <artifactId>junit</artifactId> 160 <version>3.8.1</version> 161 <scope>test</scope> 162 </dependency> 163 </dependencies> 164 165 <build> 166 <sourceDirectory>src/java</sourceDirectory> 167 <testSourceDirectory>src/test</testSourceDirectory> 168 <plugins> 169 <plugin> 170 <groupId>org.apache.maven.plugins</groupId> 171 <artifactId>maven-surefire-plugin</artifactId> 172 <configuration> 173 <forkMode>pertest</forkMode> 174 <!-- limit memory size see BEANUTILS-291 --> 175 <argLine>-Xmx25M</argLine> 176 <includes> 177 <include>**/*TestCase.java</include> 178 </includes> 179 <excludes> 180 <!-- This test case is known to fail, and there isn't any proposed fix 181 - so we will just exclude it until someone comes up with a solution. 182 --> 183 <exclude>**/*MemoryTestCase.java</exclude> 184 </excludes> 185 186 <!-- Configure Logging --> 187 <systemProperties> 188 <property> 189 <name>org.apache.commons.logging.LogFactory</name> 190 <value>org.apache.commons.logging.impl.LogFactoryImpl</value> 191 </property> 192 <property> 193 <name>org.apache.commons.logging.Log</name> 194 <value>org.apache.commons.logging.impl.SimpleLog</value> 195 </property> 196 <property> 197 <name>org.apache.commons.logging.simplelog.defaultlog</name> 198 <value>WARN</value> 199 </property> 200 </systemProperties> 201 202 </configuration> 203 </plugin> 204 <plugin> 205 <artifactId>maven-antrun-plugin</artifactId> 206 <executions> 207 <execution> 208 <phase>package</phase> 209 <configuration> 210 <tasks> 211 <ant antfile="build-other-jars.xml" target="other-jars"> 212 <property name="component.version" value="${project.version}"/> 213 <property name="build.home" value="${project.build.directory}"/> 214 <property name="dist.home" value="${project.build.directory}"/> 215 <property name="maven.compile.source" value="${maven.compile.source}"/> 216 <property name="maven.compile.target" value="${maven.compile.target}"/> 217 </ant> 218 </tasks> 219 </configuration> 220 <goals> 221 <goal>run</goal> 222 </goals> 223 </execution> 224 </executions> 225 </plugin> 226 <plugin> 227 <artifactId>maven-assembly-plugin</artifactId> 228 <configuration> 229 <descriptors> 230 <descriptor>src/main/assembly/bin.xml</descriptor> 231 <descriptor>src/main/assembly/src.xml</descriptor> 232 </descriptors> 233 <tarLongFileMode>gnu</tarLongFileMode> 234 </configuration> 235 </plugin> 236 </plugins> 237 </build> 238 239 <properties> 240 <maven.compile.source>1.3</maven.compile.source> 241 <maven.compile.target>1.3</maven.compile.target> 242 <commons.componentid>beanutils</commons.componentid> 243 <commons.release.version>1.8.0</commons.release.version> 244 <commons.jira.id>BEANUTILS</commons.jira.id> 245 <commons.jira.pid>12310460</commons.jira.pid> 246 <commons.osgi.export> 247 !org.apache.commons.collections, 248 org.apache.commons.beanutils.*;version=${pom.version} 249 </commons.osgi.export> 250 </properties> 251 252 <reporting> 253 <plugins> 254 <plugin> 255 <groupId>org.apache.maven.plugins</groupId> 256 <artifactId>maven-checkstyle-plugin</artifactId> 257 <version>2.1</version> 258 <configuration> 259 <configLocation>${basedir}/checkstyle.xml</configLocation> 260 <enableRulesSummary>false</enableRulesSummary> 261 <headerFile>${basedir}/license-header.txt</headerFile> 262 </configuration> 263 </plugin> 264 <plugin> 265 <groupId>org.codehaus.mojo</groupId> 266 <artifactId>clirr-maven-plugin</artifactId> 267 <version>2.2.2</version> 268 <configuration> 269 <comparisonVersion>1.8.0-BETA</comparisonVersion> 270 <minSeverity>info</minSeverity> 271 </configuration> 272 </plugin> 273 <plugin> 274 <groupId>org.apache.maven.plugins</groupId> 275 <artifactId>maven-javadoc-plugin</artifactId> 276 <version>2.4</version> 277 <configuration> 278 <linksource>true</linksource> 279 <links> 280 <link>http://java.sun.com/j2se/1.4.2/docs/api/</link> 281 <link>http://commons.apache.org/collections/api-release/</link> 282 </links> 283 </configuration> 284 </plugin> 285 </plugins> 286 </reporting> 287 288 </project> 289