File tree Expand file tree Collapse file tree
main/java/org/apache/commons/configuration2
test/java/org/apache/commons/configuration2 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848 <commons .scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-configuration</commons .scmPubUrl>
4949 <!-- Explicitly declare optional dependencies for the OSGi manifest. -->
5050 <commons .osgi.import>
51- org.apache.commons.beanutils .*;resolution:=optional,
51+ org.apache.commons.beanutils2 .*;resolution:=optional,
5252 org.apache.commons.codec.*;resolution:=optional,
5353 org.apache.commons.jxpath.*;resolution:=optional,
5454 org.apache.xml.resolver.*;resolution:=optional,
136136 </dependency >
137137
138138 <dependency >
139- <groupId >commons-beanutils </groupId >
140- <artifactId >commons-beanutils </artifactId >
141- <version >1.10.0 </version >
139+ <groupId >org.apache. commons</groupId >
140+ <artifactId >commons-beanutils2 </artifactId >
141+ <version >2.0.0-M1 </version >
142142 <optional >true</optional >
143143 </dependency >
144144
Original file line number Diff line number Diff line change 2727import java .util .Set ;
2828import java .util .TreeSet ;
2929
30- import org .apache .commons .beanutils .BeanUtilsBean ;
31- import org .apache .commons .beanutils .ConvertUtilsBean ;
32- import org .apache .commons .beanutils .DynaBean ;
33- import org .apache .commons .beanutils .FluentPropertyBeanIntrospector ;
34- import org .apache .commons .beanutils .PropertyUtilsBean ;
35- import org .apache .commons .beanutils .WrapDynaBean ;
36- import org .apache .commons .beanutils .WrapDynaClass ;
30+ import org .apache .commons .beanutils2 .BeanUtilsBean ;
31+ import org .apache .commons .beanutils2 .ConvertUtilsBean ;
32+ import org .apache .commons .beanutils2 .DynaBean ;
33+ import org .apache .commons .beanutils2 .FluentPropertyBeanIntrospector ;
34+ import org .apache .commons .beanutils2 .PropertyUtilsBean ;
35+ import org .apache .commons .beanutils2 .WrapDynaBean ;
36+ import org .apache .commons .beanutils2 .WrapDynaClass ;
3737import org .apache .commons .configuration2 .ex .ConfigurationRuntimeException ;
3838import org .apache .commons .lang3 .ClassUtils ;
3939
Original file line number Diff line number Diff line change 2222import java .util .List ;
2323import java .util .Objects ;
2424
25- import org .apache .commons .beanutils .DynaBean ;
26- import org .apache .commons .beanutils .DynaClass ;
25+ import org .apache .commons .beanutils2 .DynaBean ;
26+ import org .apache .commons .beanutils2 .DynaClass ;
2727import org .apache .commons .configuration2 .Configuration ;
2828import org .apache .commons .configuration2 .ConfigurationMap ;
2929import org .apache .commons .configuration2 .SubsetConfiguration ;
Original file line number Diff line number Diff line change 2121import java .util .Iterator ;
2222import java .util .List ;
2323
24- import org .apache .commons .beanutils .DynaBean ;
25- import org .apache .commons .beanutils .DynaClass ;
26- import org .apache .commons .beanutils .DynaProperty ;
24+ import org .apache .commons .beanutils2 .DynaBean ;
25+ import org .apache .commons .beanutils2 .DynaClass ;
26+ import org .apache .commons .beanutils2 .DynaProperty ;
2727import org .apache .commons .configuration2 .Configuration ;
2828import org .apache .commons .logging .Log ;
2929import org .apache .commons .logging .LogFactory ;
Original file line number Diff line number Diff line change 2121import java .util .HashMap ;
2222import java .util .Map ;
2323
24- import org .apache .commons .beanutils .DynaBean ;
25- import org .apache .commons .beanutils .DynaClass ;
26- import org .apache .commons .beanutils .DynaProperty ;
24+ import org .apache .commons .beanutils2 .DynaBean ;
25+ import org .apache .commons .beanutils2 .DynaClass ;
26+ import org .apache .commons .beanutils2 .DynaProperty ;
2727import org .apache .commons .configuration2 .beanutils .BeanHelper ;
2828
2929/**
Original file line number Diff line number Diff line change 2222import java .util .Map ;
2323import java .util .stream .Stream ;
2424
25- import org .apache .commons .beanutils .DynaBean ;
26- import org .apache .commons .beanutils .DynaClass ;
27- import org .apache .commons .beanutils .DynaProperty ;
25+ import org .apache .commons .beanutils2 .DynaBean ;
26+ import org .apache .commons .beanutils2 .DynaClass ;
27+ import org .apache .commons .beanutils2 .DynaProperty ;
2828
2929/**
3030 * <p>
Original file line number Diff line number Diff line change 6464import java .util .Properties ;
6565import java .util .Set ;
6666
67- import org .apache .commons .collections .IteratorUtils ;
67+ import org .apache .commons .collections4 .IteratorUtils ;
6868import org .apache .commons .configuration2 .SynchronizerTestImpl .Methods ;
6969import org .apache .commons .configuration2 .builder .FileBasedBuilderParametersImpl ;
7070import org .apache .commons .configuration2 .builder .FileBasedConfigurationBuilder ;
Original file line number Diff line number Diff line change 3131import java .util .List ;
3232import java .util .Map ;
3333
34- import org .apache .commons .beanutils .DynaBean ;
35- import org .apache .commons .beanutils .LazyDynaBean ;
34+ import org .apache .commons .beanutils2 .DynaBean ;
35+ import org .apache .commons .beanutils2 .LazyDynaBean ;
3636import org .apache .commons .configuration2 .PropertiesConfiguration ;
3737import org .apache .commons .configuration2 .ex .ConfigurationRuntimeException ;
3838import org .junit .jupiter .api .BeforeEach ;
Original file line number Diff line number Diff line change 2929import java .util .HashMap ;
3030import java .util .List ;
3131
32- import org .apache .commons .beanutils .DynaProperty ;
32+ import org .apache .commons .beanutils2 .DynaProperty ;
3333import org .apache .commons .configuration2 .BaseConfiguration ;
3434import org .apache .commons .configuration2 .Configuration ;
3535import org .apache .commons .configuration2 .MapConfiguration ;
Original file line number Diff line number Diff line change 2626import java .util .HashMap ;
2727import java .util .Map ;
2828
29- import org .apache .commons .beanutils .DynaClass ;
30- import org .apache .commons .beanutils .LazyDynaBean ;
31- import org .apache .commons .beanutils .PropertyUtils ;
29+ import org .apache .commons .beanutils2 .DynaClass ;
30+ import org .apache .commons .beanutils2 .LazyDynaBean ;
31+ import org .apache .commons .beanutils2 .PropertyUtils ;
3232import org .apache .commons .configuration2 .builder .BasicBuilderParameters ;
3333import org .apache .commons .configuration2 .builder .FileBasedBuilderParametersImpl ;
3434import org .apache .commons .configuration2 .convert .DefaultListDelimiterHandler ;
You can’t perform that action at this time.
0 commit comments