48c7ed
%bcond_with bootstrap
48c7ed
48c7ed
Name:              httpcomponents-client
48c7ed
Summary:           HTTP agent implementation based on httpcomponents HttpCore
48c7ed
Version:           4.5.13
48c7ed
Release:           2%{?dist}
48c7ed
License:           ASL 2.0
48c7ed
URL:               http://hc.apache.org/
48c7ed
Source0:           https://www.apache.org/dist/httpcomponents/httpclient/source/%{name}-%{version}-src.tar.gz
48c7ed
BuildArch:         noarch
48c7ed
48c7ed
Patch0:            0001-Use-system-copy-of-effective_tld_names.dat.patch
48c7ed
Patch1:            0002-Port-to-mockito-2.patch
48c7ed
48c7ed
BuildRequires:     maven-local-openjdk8
48c7ed
%if %{with bootstrap}
48c7ed
BuildRequires:  javapackages-bootstrap
48c7ed
%else
48c7ed
BuildRequires:     mvn(commons-codec:commons-codec)
48c7ed
BuildRequires:     mvn(commons-logging:commons-logging)
48c7ed
BuildRequires:     mvn(junit:junit)
48c7ed
BuildRequires:     mvn(org.apache.felix:maven-bundle-plugin)
48c7ed
BuildRequires:     mvn(org.apache.httpcomponents:httpcomponents-parent:pom:)
48c7ed
BuildRequires:     mvn(org.apache.httpcomponents:httpcore)
48c7ed
BuildRequires:     mvn(org.codehaus.mojo:build-helper-maven-plugin)
48c7ed
BuildRequires:     mvn(org.mockito:mockito-core)
48c7ed
%endif
48c7ed
48c7ed
%if %{without bootstrap}
48c7ed
BuildRequires:     publicsuffix-list
48c7ed
%endif
48c7ed
Requires:          publicsuffix-list
48c7ed
48c7ed
%description
48c7ed
HttpClient is a HTTP/1.1 compliant HTTP agent implementation based on
48c7ed
httpcomponents HttpCore. It also provides reusable components for
48c7ed
client-side authentication, HTTP state management, and HTTP connection
48c7ed
management. HttpComponents Client is a successor of and replacement
48c7ed
for Commons HttpClient 3.x. Users of Commons HttpClient are strongly
48c7ed
encouraged to upgrade.
48c7ed
48c7ed
%{?javadoc_package}
48c7ed
48c7ed
%prep
48c7ed
%setup -q -n %{name}-%{version}
48c7ed
%patch0 -p1
48c7ed
%patch1 -p1
48c7ed
48c7ed
%mvn_package :::tests: __noinstall
48c7ed
48c7ed
# Change scope of commons-logging to provided
48c7ed
%pom_change_dep :commons-logging :::provided httpclient
48c7ed
48c7ed
# Remove optional build deps not available in Fedora
48c7ed
%pom_disable_module httpclient-osgi
48c7ed
%pom_disable_module httpclient-win
48c7ed
%pom_disable_module fluent-hc
48c7ed
%pom_disable_module httpmime
48c7ed
%pom_disable_module httpclient-cache
48c7ed
%pom_remove_plugin :docbkx-maven-plugin
48c7ed
%pom_remove_plugin :clirr-maven-plugin
48c7ed
%pom_remove_plugin :maven-checkstyle-plugin
48c7ed
%pom_remove_plugin :apache-rat-plugin
48c7ed
%pom_remove_plugin :maven-source-plugin
48c7ed
%pom_remove_plugin :maven-javadoc-plugin
48c7ed
%pom_remove_plugin :animal-sniffer-maven-plugin
48c7ed
48c7ed
# Fails due to strict crypto policy - uses DSA in test data
48c7ed
rm httpclient/src/test/java/org/apache/http/conn/ssl/TestSSLSocketFactory.java
48c7ed
48c7ed
%pom_remove_plugin :download-maven-plugin httpclient
48c7ed
48c7ed
%pom_xpath_inject "pom:archive" "
48c7ed
    <manifestFile>\${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>"
48c7ed
48c7ed
%pom_xpath_inject pom:build/pom:plugins "
48c7ed
    <plugin>
48c7ed
      <groupId>org.apache.felix</groupId>
48c7ed
      <artifactId>maven-bundle-plugin</artifactId>
48c7ed
      <executions>
48c7ed
        <execution>
48c7ed
          <id>bundle-manifest</id>
48c7ed
          <phase>process-classes</phase>
48c7ed
          <goals>
48c7ed
            <goal>manifest</goal>
48c7ed
          </goals>
48c7ed
        </execution>
48c7ed
      </executions>
48c7ed
    </plugin>"
48c7ed
48c7ed
%pom_xpath_inject pom:build "
48c7ed
<pluginManagement>
48c7ed
  <plugins>
48c7ed
    <plugin>
48c7ed
      <groupId>org.apache.felix</groupId>
48c7ed
      <artifactId>maven-bundle-plugin</artifactId>
48c7ed
      <configuration>
48c7ed
        <instructions>
48c7ed
          <Export-Package>org.apache.http.*,!org.apache.http.param</Export-Package>
48c7ed
          <Private-Package></Private-Package>
48c7ed
          <_nouses>true</_nouses>
48c7ed
          <Import-Package>!org.apache.avalon.framework.logger,!org.apache.log,!org.apache.log4j,*</Import-Package>
48c7ed
        </instructions>
48c7ed
        <excludeDependencies>true</excludeDependencies>
48c7ed
      </configuration>
48c7ed
    </plugin>
48c7ed
  </plugins>
48c7ed
</pluginManagement>
48c7ed
" httpclient
48c7ed
48c7ed
# requires network
48c7ed
rm httpclient/src/test/java/org/apache/http/client/config/TestRequestConfig.java
48c7ed
48c7ed
%build
48c7ed
%mvn_file ":{*}" httpcomponents/@1
48c7ed
48c7ed
%mvn_build
48c7ed
48c7ed
%install
48c7ed
%mvn_install
48c7ed
48c7ed
%files -n %{?module_prefix}%{name} -f .mfiles
48c7ed
%license LICENSE.txt NOTICE.txt
48c7ed
%doc README.txt RELEASE_NOTES.txt
48c7ed
48c7ed
%changelog
48c7ed
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4.5.13-2
48c7ed
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
48c7ed
  Related: rhbz#1991688
48c7ed
48c7ed
* Wed Jun 23 2021 Marian Koncek <mkoncek@redhat.com> - 4.5.13-1
48c7ed
- Update to upstream version 4.5.13
48c7ed
48c7ed
* Wed Jun 09 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.11-5
48c7ed
- Rebuild to workaround DistroBaker issue
48c7ed
48c7ed
* Tue Jun 08 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.11-4
48c7ed
- Bootstrap Maven for CentOS Stream 9
48c7ed
48c7ed
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.11-3
48c7ed
- Bootstrap build
48c7ed
- Non-bootstrap build
48c7ed
48c7ed
* Wed Feb 17 2021 Fabio Valentini <decathorpe@gmail.com> - 4.5.10-6
48c7ed
- Build with -release 8 for better OpenJDK 8 compatibility.
48c7ed
48c7ed
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.10-5
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
48c7ed
48c7ed
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.10-4
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
48c7ed
48c7ed
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 4.5.10-3
48c7ed
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
48c7ed
48c7ed
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.10-2
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
48c7ed
48c7ed
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.11-2
48c7ed
- Build with OpenJDK 8
48c7ed
48c7ed
* Wed Jan 22 2020 Marian Koncek <mkoncek@redhat.com> - 4.5.11-1
48c7ed
- Update to upstream version 4.5.11
48c7ed
48c7ed
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.10-2
48c7ed
- Mass rebuild for javapackages-tools 201902
48c7ed
48c7ed
* Mon Sep 16 2019 Marian Koncek <mkoncek@redhat.com> - 4.5.10-1
48c7ed
- Update to upstream version 4.5.10
48c7ed
48c7ed
* Mon Sep 16 2019 Marian Koncek <mkoncek@redhat.com> - 4.5.10-1
48c7ed
- Update to upstream version 4.5.10
48c7ed
48c7ed
* Thu Aug 29 2019 Fabio Valentini <decathorpe@gmail.com> - 4.5.7-3
48c7ed
- Disable memcached and ehcache support.
48c7ed
48c7ed
* Mon Jul 29 2019 Marian Koncek <mkoncek@redhat.com> - 4.5.9-1
48c7ed
- Update to upstream version 4.5.9
48c7ed
48c7ed
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.7-2
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
48c7ed
48c7ed
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.8-2
48c7ed
- Mass rebuild for javapackages-tools 201901
48c7ed
48c7ed
* Mon May 13 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.8-1
48c7ed
- Update to upstream version 4.5.8
48c7ed
48c7ed
* Mon Feb 04 2019 Marian Koncek <mkoncek@redhat.com> - 4.5.7-1
48c7ed
- Update to upstream version 4.5.7
48c7ed
- Fixes: RHBZ #1669148
48c7ed
48c7ed
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.6-3
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
48c7ed
48c7ed
* Fri Dec 07 2018 Mat Booth <mat.booth@redhat.com> - 4.5.6-2
48c7ed
- Add a patch to allow building with mockito 2
48c7ed
- Don't package tests jars, the tests jars have the same OSGi metadata as the
48c7ed
  main jars, which can cause tycho to resolve the wrong one when building
48c7ed
  eclipse plugins
48c7ed
48c7ed
* Mon Oct  8 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.6-1
48c7ed
- Update to upstream version 4.5.6
48c7ed
48c7ed
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.5-5
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
48c7ed
48c7ed
* Mon Mar 19 2018 Michael Simacek <msimacek@redhat.com> - 4.5.5-4
48c7ed
- Fix FTBFS (weak crypto in test data)
48c7ed
48c7ed
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.5.5-3
48c7ed
- Escape macros in %%changelog
48c7ed
48c7ed
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.5-2
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
48c7ed
48c7ed
* Mon Jan 22 2018 Michael Simacek <msimacek@redhat.com> - 4.5.5-1
48c7ed
- Update to upstream version 4.5.5
48c7ed
48c7ed
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.3-4
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
48c7ed
48c7ed
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.3-3
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
48c7ed
48c7ed
* Thu Feb 02 2017 Michael Simacek <msimacek@redhat.com> - 4.5.3-2
48c7ed
- Add conditionals for memcached and ehcache
48c7ed
48c7ed
* Thu Jan 26 2017 Michael Simacek <msimacek@redhat.com> - 4.5.3-1
48c7ed
- Update to upstream version 4.5.3
48c7ed
48c7ed
* Fri Jun 24 2016 Michael Simacek <msimacek@redhat.com> - 4.5.2-4
48c7ed
- Fix build with httpcomponents-core-4.4.5
48c7ed
48c7ed
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.2-3
48c7ed
- Add missing build-requires
48c7ed
48c7ed
* Wed Mar 16 2016 Sopot Cela <scela@redhat.com> - 4.5.2-2
48c7ed
- Make the fluent API into a bundle
48c7ed
48c7ed
* Mon Feb 29 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.2-1
48c7ed
- Update to upstream version 4.5.2
48c7ed
48c7ed
* Wed Feb 10 2016 Mat Booth <mat.booth@redhat.com> - 4.5.1-4
48c7ed
- Enable the fluent API module
48c7ed
48c7ed
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.1-3
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
48c7ed
48c7ed
* Mon Jan 25 2016 Mat Booth <mat.booth@redhat.com> - 4.5.1-2
48c7ed
- Make client cache jar into a OSGi bundle
48c7ed
48c7ed
* Wed Sep 16 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.1-1
48c7ed
- Update to upstream version 4.5.1
48c7ed
48c7ed
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.5-2
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
48c7ed
48c7ed
* Thu Jun 04 2015 Michael Simacek <msimacek@redhat.com> - 4.5-1
48c7ed
- Update to upstream version 4.5
48c7ed
48c7ed
* Tue Mar 31 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.1-1
48c7ed
- Update to upstream version 4.4.1
48c7ed
48c7ed
* Wed Feb 18 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4-1
48c7ed
- Update to upstream version 4.4
48c7ed
48c7ed
* Thu Jan 22 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4-0.3.beta1
48c7ed
- Split httpclient-cache into subpackage
48c7ed
48c7ed
* Tue Jan 20 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4-0.2.beta1
48c7ed
- Unbundle publicsuffix-list
48c7ed
- Resolves: rhbz#1183782
48c7ed
48c7ed
* Mon Jan 19 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4-0.1.beta1
48c7ed
- Update to upstream version 4.4 beta1
48c7ed
- Remove tests subpackage
48c7ed
48c7ed
* Fri Jan  9 2015 Richard Fearn <richardfearn@gmail.com> - 4.3.5-3
48c7ed
- Also build HttpClient Cache (bug #1180696)
48c7ed
48c7ed
* Tue Dec 02 2014 Michael Simacek <msimacek@redhat.com> - 4.3.5-2
48c7ed
- Build and install tests artifact (needed by copr-java)
48c7ed
48c7ed
* Tue Aug  5 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.5-1
48c7ed
- Update to upstream version 4.3.5
48c7ed
48c7ed
* Mon Aug  4 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.4-2
48c7ed
- Fix build-requires on httpcomponents-project
48c7ed
48c7ed
* Fri Jun  6 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.4-1
48c7ed
- Update to upstream version 4.3.4
48c7ed
48c7ed
* Fri Feb 28 2014 Michael Simacek <msimacek@redhat.com> - 4.3.3-1
48c7ed
- Update to upstream version 4.3.3
48c7ed
48c7ed
* Mon Jan 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.2-1
48c7ed
- Update to upstream version 4.3.2
48c7ed
48c7ed
* Mon Jan 06 2014 Michael Simacek <msimacek@redhat.com> - 4.3.1-1
48c7ed
- Update to upstream version 4.3.1
48c7ed
- Temporarily disable tests due to bug in mockito
48c7ed
48c7ed
* Thu Oct  3 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3-2
48c7ed
- Don't try to remove maven-notice-plugin from POM
48c7ed
48c7ed
* Fri Sep 13 2013 Michal Srb <msrb@redhat.com> - 4.3-1
48c7ed
- Update to upstream version 4.3
48c7ed
- Drop group tag
48c7ed
48c7ed
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.5-3
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
48c7ed
48c7ed
* Mon Jun 10 2013 Michal Srb <msrb@redhat.com> - 4.2.5-2
48c7ed
- Enable tests on Fedora
48c7ed
48c7ed
* Thu Apr 25 2013 Michal Srb <msrb@redhat.com> - 4.2.5-1
48c7ed
- Update to upstream version 4.2.5
48c7ed
48c7ed
* Thu Apr 11 2013 Michal Srb <msrb@redhat.com> - 4.2.4-1
48c7ed
- Update to upstream version 4.2.4
48c7ed
48c7ed
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 4.2.3-3
48c7ed
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
48c7ed
- Replace maven BuildRequires with maven-local
48c7ed
48c7ed
* Fri Jan 25 2013 Michal Srb <msrb@redhat.com> - 4.2.3-2
48c7ed
- Build with xmvn
48c7ed
- Disable fluent-hc module
48c7ed
48c7ed
* Thu Jan 24 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-1
48c7ed
- Update to upstream version 4.2.3
48c7ed
48c7ed
* Thu Oct 25 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-1
48c7ed
- Update to upstream version 4.2.2
48c7ed
48c7ed
* Wed Aug  1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.1-3
48c7ed
- Fix OSGi manifest in httpmime
48c7ed
48c7ed
* Fri Jul 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.1-2
48c7ed
- Install NOTICE.txt file
48c7ed
- Fix javadir directory ownership
48c7ed
- Fix directory permissions
48c7ed
- Preserve timestamps
48c7ed
- Replace add_to_maven_depmap with add_maven_depmap
48c7ed
48c7ed
* Fri Jul 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.1-1
48c7ed
- Update to upstream version 4.2.1
48c7ed
- Convert patches to POM macros
48c7ed
48c7ed
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.3-4
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
48c7ed
48c7ed
* Wed May 2 2012 Alexander Kurtakov <akurtako@redhat.com> 4.1.3-3
48c7ed
- Do not export org.apache.http.param in osgi.
48c7ed
48c7ed
* Mon Mar 26 2012 Alexander Kurtakov <akurtako@redhat.com> 4.1.3-2
48c7ed
- Do not export * but only org.apache.http.* .
48c7ed
- Do not generate uses clauses in the manifest.
48c7ed
48c7ed
* Thu Mar  1 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> 4.1.3-1
48c7ed
- Update to latest upstream bugfix
48c7ed
48c7ed
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.2-2
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
48c7ed
48c7ed
* Tue Aug 16 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.2-1
48c7ed
- Update to latest upstream (4.1.2)
48c7ed
- Minor tweaks according to guidelines
48c7ed
48c7ed
* Fri Jul 15 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1.1-3
48c7ed
- Fix for RH Bz#718830. Add instructions so as to not
48c7ed
  Import-Package optional dependencies.
48c7ed
48c7ed
* Thu Apr 7 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1.1-2
48c7ed
- Add BR/R apache-commons-codec, since httpcomponents-client's
48c7ed
  MANIFEST.MF has an Import-Package: org.apache.commons.codec
48c7ed
  header.
48c7ed
48c7ed
* Tue Mar 29 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.1-1
48c7ed
- New upstream bugfix version (4.1.1)
48c7ed
48c7ed
* Tue Mar 15 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1-6
48c7ed
- Explicitly set PrivatePackage to the empty set, so as to
48c7ed
  export all packages.
48c7ed
48c7ed
* Thu Mar 10 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-5
48c7ed
- OSGi export more packages.
48c7ed
48c7ed
* Fri Feb 25 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-4
48c7ed
- Build httpmime module.
48c7ed
48c7ed
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-3
48c7ed
- Don't use basename as an identifier.
48c7ed
48c7ed
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-2
48c7ed
- OSGify properly.
48c7ed
- Install into %%{_javadir}/%%{basename}.
48c7ed
48c7ed
* Thu Feb 17 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-1
48c7ed
- Update to latest upstream version.
48c7ed
48c7ed
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.3-3
48c7ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
48c7ed
48c7ed
* Wed Dec 22 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.0.3-2
48c7ed
- Added license to javadoc subpackage
48c7ed
48c7ed
* Mon Dec 20 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.0.3-1
48c7ed
- Initial version