组织ID: |
commons-beanutils |
项目ID: |
commons-beanutils |
版本: |
1.8.3 |
最后修改时间: |
2018-07-23 20:56:53 |
包类型: |
jar |
标题: |
Commons BeanUtils |
描述: |
BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection. |
大小: |
226.58KB |
|
Maven引入代码: |
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.8.3</version>
</dependency>
|
Gradle引入代码: |
commons-beanutils:commons-beanutils:1.8.3
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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">
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>14</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.8.3</version>
<name>Commons BeanUtils</name>
<inceptionYear>2000</inceptionYear>
<description>BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection.</description>
<url>http://commons.apache.org/beanutils/</url>
<issueManagement>
<system>jira</system>
<url>http://issues.apache.org/jira/browse/BEANUTILS</url>
</issueManagement>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/beanutils/trunk/</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/beanutils/trunk/</developerConnection>
<url>http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/</url>
</scm>
<developers>
<developer>
<name>Robert Burrell Donkin</name>
<id>rdonkin</id>
<email>rdonkin@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>dIon Gillard</name>
<id>dion</id>
<email>dion@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>Craig McClanahan</name>
<id>craigmcc</id>
<email>craigmcc@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>Geir Magnusson Jr.</name>
<id>geirm</id>
<email>geirm@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>Scott Sanders</name>
<id>sanders</id>
<email>sanders@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>James Strachan</name>
<id>jstrachan</id>
<email>jstrachan@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>Rodney Waldhoff</name>
<id>rwaldhoff</id>
<email>rwaldhoff@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>Martin van den Bemt</name>
<id>mvdb</id>
<email>mvdb@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>Yoav Shapira</name>
<id>yoavs</id>
<email>yoavs@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>Niall Pemberton</name>
<id>niallp</id>
<email>niallp at apache dot org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>Simon Kitching</name>
<id>skitching</id>
<email>skitching@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
<developer>
<name>James Carman</name>
<id>jcarman</id>
<email>jcarman@apache.org</email>
<organization>Apache Software Foundation</organization>
</developer>
</developers>
<contributors>
<contributor>
<name>Paul Jack</name>
<email></email>
</contributor>
<contributor>
<name>Stephen Colebourne</name>
<email></email>
</contributor>
<contributor>
<name>Berin Loritsch</name>
<email></email>
</contributor>
</contributors>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections-testframework</artifactId>
<version>3.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>pertest</forkMode>
<!-- limit memory size see BEANUTILS-291 -->
<argLine>-Xmx25M</argLine>
<includes>
<include>**/*TestCase.java</include>
</includes>
<excludes>
<!-- This test case is known to fail, and there isn't any proposed fix
- so we will just exclude it until someone comes up with a solution.
-->
<exclude>**/*MemoryTestCase.java</exclude>
</excludes>
<!-- Configure Logging -->
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<systemPropertyVariables>
<org.apache.commons.logging.LogFactory>org.apache.commons.logging.impl.LogFactoryImpl</org.apache.commons.logging.LogFactory>
<org.apache.commons.logging.Log>org.apache.commons.logging.impl.SimpleLog</org.apache.commons.logging.Log>>
<org.apache.commons.logging.simplelog.defaultlog>WARN</org.apache.commons.logging.simplelog.defaultlog>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<configuration>
<tasks>
<ant antfile="build.xml" target="other-jars">
<property name="component.version" value="${project.version}"/>
<property name="build.home" value="${project.build.directory}"/>
<property name="dist.home" value="${project.build.directory}"/>
<property name="compile.source" value="${maven.compile.source}"/>
<property name="compile.target" value="${maven.compile.target}"/>
</ant>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
<descriptor>src/main/assembly/src.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<maven.compile.source>1.3</maven.compile.source>
<maven.compile.target>1.3</maven.compile.target>
<commons.componentid>beanutils</commons.componentid>
<commons.release.version>1.8.3</commons.release.version>
<commons.jira.id>BEANUTILS</commons.jira.id>
<commons.jira.pid>12310460</commons.jira.pid>
<commons.osgi.export>
org.apache.commons.beanutils.*;version=${pom.version};-noimport:=true
</commons.osgi.export>
</properties>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.3</version>
<configuration>
<configLocation>${basedir}/checkstyle.xml</configLocation>
<enableRulesSummary>false</enableRulesSummary>
<headerLocation>${basedir}/license-header.txt</headerLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<comparisonVersion>1.8.2</comparisonVersion>
<minSeverity>info</minSeverity>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.5</version>
<configuration>
<linksource>true</linksource>
<links>
<link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
<link>http://commons.apache.org/collections/api-release/</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.3</version>
<configuration>
<issueLinkTemplatePerSystem>
<default>%URL%/%ISSUE%</default>
</issueLinkTemplatePerSystem>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE.txt
META-INF/NOTICE.txt
org.apache.commons.beanutils.BasicDynaBean.class
org.apache.commons.beanutils.BasicDynaClass.class
org.apache.commons.beanutils.BeanAccessLanguageException.class
org.apache.commons.beanutils.BeanComparator.class
org.apache.commons.beanutils.BeanMap$1.class
org.apache.commons.beanutils.BeanMap$10.class
org.apache.commons.beanutils.BeanMap$11.class
org.apache.commons.beanutils.BeanMap$12.class
org.apache.commons.beanutils.BeanMap$2.class
org.apache.commons.beanutils.BeanMap$3.class
org.apache.commons.beanutils.BeanMap$4.class
org.apache.commons.beanutils.BeanMap$5.class
org.apache.commons.beanutils.BeanMap$6.class
org.apache.commons.beanutils.BeanMap$7.class
org.apache.commons.beanutils.BeanMap$8.class
org.apache.commons.beanutils.BeanMap$9.class
org.apache.commons.beanutils.BeanMap$Entry.class
org.apache.commons.beanutils.BeanMap.class
org.apache.commons.beanutils.BeanPredicate.class
org.apache.commons.beanutils.BeanPropertyValueChangeClosure.class
org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate.class
org.apache.commons.beanutils.BeanToPropertyValueTransformer.class
org.apache.commons.beanutils.BeanUtils.class
org.apache.commons.beanutils.BeanUtilsBean$1.class
org.apache.commons.beanutils.BeanUtilsBean.class
org.apache.commons.beanutils.BeanUtilsBean2.class
org.apache.commons.beanutils.ConstructorUtils.class
org.apache.commons.beanutils.ContextClassLoaderLocal.class
org.apache.commons.beanutils.ConversionException.class
org.apache.commons.beanutils.Converter.class
org.apache.commons.beanutils.converters.AbstractArrayConverter.class
org.apache.commons.beanutils.converters.AbstractConverter.class
org.apache.commons.beanutils.converters.ArrayConverter.class
org.apache.commons.beanutils.converters.BigDecimalConverter.class
org.apache.commons.beanutils.converters.BigIntegerConverter.class
org.apache.commons.beanutils.converters.BooleanArrayConverter.class
org.apache.commons.beanutils.converters.BooleanConverter.class
org.apache.commons.beanutils.converters.ByteArrayConverter.class
org.apache.commons.beanutils.converters.ByteConverter.class
org.apache.commons.beanutils.converters.CalendarConverter.class
org.apache.commons.beanutils.converters.CharacterArrayConverter.class
org.apache.commons.beanutils.converters.CharacterConverter.class
org.apache.commons.beanutils.converters.ClassConverter.class
org.apache.commons.beanutils.converters.ConverterFacade.class
org.apache.commons.beanutils.converters.DateConverter.class
org.apache.commons.beanutils.converters.DateTimeConverter.class
org.apache.commons.beanutils.converters.DoubleArrayConverter.class
org.apache.commons.beanutils.converters.DoubleConverter.class
org.apache.commons.beanutils.converters.FileConverter.class
org.apache.commons.beanutils.converters.FloatArrayConverter.class
org.apache.commons.beanutils.converters.FloatConverter.class
org.apache.commons.beanutils.converters.IntegerArrayConverter.class
org.apache.commons.beanutils.converters.IntegerConverter.class
org.apache.commons.beanutils.converters.LongArrayConverter.class
org.apache.commons.beanutils.converters.LongConverter.class
org.apache.commons.beanutils.converters.NumberConverter.class
org.apache.commons.beanutils.converters.ShortArrayConverter.class
org.apache.commons.beanutils.converters.ShortConverter.class
org.apache.commons.beanutils.converters.SqlDateConverter.class
org.apache.commons.beanutils.converters.SqlTimeConverter.class
org.apache.commons.beanutils.converters.SqlTimestampConverter.class
org.apache.commons.beanutils.converters.StringArrayConverter.class
org.apache.commons.beanutils.converters.StringConverter.class
org.apache.commons.beanutils.converters.URLConverter.class
org.apache.commons.beanutils.ConvertingWrapDynaBean.class
org.apache.commons.beanutils.ConvertUtils.class
org.apache.commons.beanutils.ConvertUtilsBean.class
org.apache.commons.beanutils.ConvertUtilsBean2.class
org.apache.commons.beanutils.DynaBean.class
org.apache.commons.beanutils.DynaBeanMapDecorator$MapEntry.class
org.apache.commons.beanutils.DynaBeanMapDecorator.class
org.apache.commons.beanutils.DynaClass.class
org.apache.commons.beanutils.DynaProperty.class
org.apache.commons.beanutils.expression.DefaultResolver.class
org.apache.commons.beanutils.expression.Resolver.class
org.apache.commons.beanutils.JDBCDynaClass.class
org.apache.commons.beanutils.LazyDynaBean.class
org.apache.commons.beanutils.LazyDynaClass.class
org.apache.commons.beanutils.LazyDynaList.class
org.apache.commons.beanutils.LazyDynaMap.class
org.apache.commons.beanutils.locale.BaseLocaleConverter.class
org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter.class
org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter.class
org.apache.commons.beanutils.locale.converters.ByteLocaleConverter.class
org.apache.commons.beanutils.locale.converters.DateLocaleConverter.class
org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter.class
org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter.class
org.apache.commons.beanutils.locale.converters.FloatLocaleConverter.class
org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter.class
org.apache.commons.beanutils.locale.converters.LongLocaleConverter.class
org.apache.commons.beanutils.locale.converters.ShortLocaleConverter.class
org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter.class
org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter.class
org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter.class
org.apache.commons.beanutils.locale.converters.StringLocaleConverter.class
org.apache.commons.beanutils.locale.LocaleBeanUtils$Descriptor.class
org.apache.commons.beanutils.locale.LocaleBeanUtils.class
org.apache.commons.beanutils.locale.LocaleBeanUtilsBean$1.class
org.apache.commons.beanutils.locale.LocaleBeanUtilsBean$Descriptor.class
org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.class
org.apache.commons.beanutils.locale.LocaleConverter.class
org.apache.commons.beanutils.locale.LocaleConvertUtils.class
org.apache.commons.beanutils.locale.LocaleConvertUtilsBean$1.class
org.apache.commons.beanutils.locale.LocaleConvertUtilsBean$DelegateFastHashMap.class
org.apache.commons.beanutils.locale.LocaleConvertUtilsBean.class
org.apache.commons.beanutils.MappedPropertyDescriptor$MappedMethodReference.class
org.apache.commons.beanutils.MappedPropertyDescriptor.class
org.apache.commons.beanutils.MethodUtils$MethodDescriptor.class
org.apache.commons.beanutils.MethodUtils.class
org.apache.commons.beanutils.MutableDynaClass.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
commons-logging-1.1.1.jar
/commons-logging/commons-logging/1.1.1
查看commons-logging所有版本文件
commons-collections-3.2.1.jar
/commons-collections/commons-collections/3.2.1
查看commons-collections所有版本文件
commons-collections-testframework-3.2.1.jar
/commons-collections/commons-collections-testframework/3.2.1
查看commons-collections-testframework所有版本文件
junit-3.8.1.jar
/junit/junit/3.8.1
查看junit所有版本文件
|