|
|
|
%bcond_with bootstrap
|
|
|
|
|
|
|
|
Name: modello
|
|
|
|
Version: 2.1.2
|
|
|
|
Release: 7%{?dist}
|
|
|
|
Summary: Modello Data Model toolkit
|
|
|
|
# The majority of files are under MIT license, but some of them are ASL 2.0.
|
|
|
|
# Some parts of the project are derived from the Exolab project,
|
|
|
|
# and are licensed under a 5-clause BSD license (Plexus in SPDX).
|
|
|
|
License: MIT AND Apache-2.0 AND Plexus
|
|
|
|
URL: https://codehaus-plexus.github.io/modello
|
|
|
|
BuildArch: noarch
|
|
|
|
ExclusiveArch: %{java_arches} noarch
|
|
|
|
|
|
|
|
Source0: https://repo1.maven.org/maven2/org/codehaus/%{name}/%{name}/%{version}/%{name}-%{version}-source-release.zip
|
|
|
|
Source1: https://www.apache.org/licenses/LICENSE-2.0.txt
|
|
|
|
|
|
|
|
Patch0: 0001-Revert-Switch-to-codehaus-plexus-build-api-1.2.0-345.patch
|
|
|
|
|
|
|
|
%if %{with bootstrap}
|
|
|
|
BuildRequires: javapackages-bootstrap
|
|
|
|
%else
|
|
|
|
BuildRequires: maven-local
|
|
|
|
BuildRequires: mvn(com.google.inject:guice)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugin-tools:maven-plugin-annotations)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-dependency-plugin)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-enforcer-plugin)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-plugin-plugin)
|
|
|
|
BuildRequires: mvn(org.apache.maven:maven-core)
|
|
|
|
BuildRequires: mvn(org.apache.maven:maven-model)
|
|
|
|
BuildRequires: mvn(org.apache.maven:maven-plugin-api)
|
|
|
|
BuildRequires: mvn(org.apache.velocity:velocity-engine-core)
|
|
|
|
BuildRequires: mvn(org.codehaus.plexus:plexus-component-annotations)
|
|
|
|
BuildRequires: mvn(org.codehaus.plexus:plexus-component-metadata)
|
|
|
|
BuildRequires: mvn(org.codehaus.plexus:plexus-utils)
|
|
|
|
BuildRequires: mvn(org.codehaus.plexus:plexus:pom:)
|
|
|
|
BuildRequires: mvn(org.eclipse.sisu:org.eclipse.sisu.plexus)
|
|
|
|
BuildRequires: mvn(org.jsoup:jsoup)
|
|
|
|
BuildRequires: mvn(org.sonatype.plexus:plexus-build-api)
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Explicit javapackages-tools requires since modello script uses
|
|
|
|
# /usr/share/java-utils/java-functions
|
|
|
|
Requires: javapackages-tools
|
|
|
|
|
|
|
|
%description
|
|
|
|
Modello is a Data Model toolkit in use by the Apache Maven Project.
|
|
|
|
|
|
|
|
Modello is a framework for code generation from a simple model.
|
|
|
|
Modello generates code from a simple model format based on a plugin
|
|
|
|
architecture, various types of code and descriptors can be generated
|
|
|
|
from the single model, including Java POJOs, XML
|
|
|
|
marshallers/unmarshallers, XSD and documentation.
|
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
Summary: Javadoc for %{name}
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
API documentation for %{name}.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch0 -p1
|
|
|
|
cp -p %{SOURCE1} LICENSE
|
|
|
|
# We don't generate site; don't pull extra dependencies.
|
|
|
|
%pom_remove_plugin :maven-site-plugin
|
|
|
|
|
|
|
|
%pom_remove_dep :plexus-xml modello-core
|
|
|
|
%pom_remove_dep :sisu-guice modello-core
|
|
|
|
%pom_add_dep com.google.inject:guice modello-core
|
|
|
|
|
|
|
|
%pom_remove_dep :jackson-bom
|
|
|
|
%pom_disable_module modello-plugin-jackson modello-plugins
|
|
|
|
%pom_disable_module modello-plugin-jsonschema modello-plugins
|
|
|
|
%pom_remove_dep :modello-plugin-jackson modello-maven-plugin
|
|
|
|
%pom_remove_dep :modello-plugin-jsonschema modello-maven-plugin
|
|
|
|
|
|
|
|
%pom_disable_module modello-plugin-snakeyaml modello-plugins
|
|
|
|
%pom_remove_dep :modello-plugin-snakeyaml modello-maven-plugin
|
|
|
|
|
|
|
|
%pom_disable_module modello-test
|
|
|
|
|
|
|
|
%build
|
|
|
|
# skip tests because we have too old xmlunit in Fedora now (1.0.8)
|
|
|
|
%mvn_build -f
|
|
|
|
|
|
|
|
%install
|
|
|
|
%mvn_install
|
|
|
|
|
|
|
|
%jpackage_script org.codehaus.modello.ModelloCli "" "" modello:org.eclipse.sisu.plexus:org.eclipse.sisu.inject:google-guice:aopalliance:atinject:plexus-containers/plexus-component-annotations:plexus/classworlds:plexus/utils:plexus/plexus-build-api0:guava:velocity/velocity-engine-core %{name} true
|
|
|
|
|
|
|
|
%files -f .mfiles
|
|
|
|
%doc LICENSE
|
|
|
|
%{_bindir}/modello
|
|
|
|
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
|
|
%doc LICENSE
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 2.1.2-7
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
|
|
|
* Thu Aug 01 2024 Troy Dawson <tdawson@redhat.com> - 2.1.2-6
|
|
|
|
- Bump release for Aug 2024 java mass rebuild
|
|
|
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 2.1.2-5
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Sep 01 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.2-2
|
|
|
|
- Convert License tag to SPDX format
|
|
|
|
|
|
|
|
* Mon Aug 28 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.2-1
|
|
|
|
- Update to upstream version 2.1.2
|
|
|
|
|
|
|
|
* Mon Aug 21 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.1-1
|
|
|
|
- Update to upstream version 2.1.1
|
|
|
|
|
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Mar 31 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0.0-5
|
|
|
|
- Rebuild with no changes
|
|
|
|
|
|
|
|
* Tue Mar 21 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0.0-4
|
|
|
|
- Port to Google Guice 5
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Apr 22 2022 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0.0-1
|
|
|
|
- Update to upstream version 2.0.0
|
|
|
|
- Remove dependency on Jsoup
|
|
|
|
|
|
|
|
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 1.11-8
|
|
|
|
- Rebuilt for java-17-openjdk as system jdk
|
|
|
|
|
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.11-5
|
|
|
|
- Bootstrap build
|
|
|
|
- Non-bootstrap build
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.11-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.11-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 0:1.11-2
|
|
|
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
|
|
|
|
|
|
* Thu May 14 2020 Fabio Valentini <decathorpe@gmail.com> - 0:1.11-1
|
|
|
|
- Update to version 1.11.
|
|
|
|
|
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.10.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.11-2
|
|
|
|
- Mass rebuild for javapackages-tools 201902
|
|
|
|
|
|
|
|
* Tue Aug 20 2019 Fabio Valentini <decathorpe@gmail.com> - 0:1.10.0-1
|
|
|
|
- Update to version 1.10.0.
|
|
|
|
|
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.1-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jun 26 2019 Marian Koncek <mkoncek@redhat.com> - 1.11-1
|
|
|
|
- Update to upstream version 1.11
|
|
|
|
|
|
|
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.0-2
|
|
|
|
- Mass rebuild for javapackages-tools 201901
|
|
|
|
|
|
|
|
* Sat Apr 13 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10.0-1
|
|
|
|
- Update to upstream version 1.10.0
|
|
|
|
|
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Jul 31 2018 Severin Gehwolf <sgehwolf@redhat.com> - 0:1.9.1-7
|
|
|
|
- Add explicit requires on javapackages-tools for modello script.
|
|
|
|
|
|
|
|
* Tue Jul 17 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.9.1-6
|
|
|
|
- Allow conditionally building without snakeyaml
|
|
|
|
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
|
|
* Mon Nov 27 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.9.1-3
|
|
|
|
- Contitionally allow building without jackson
|
|
|
|
|
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.9.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Mar 29 2017 Michael Simacek <msimacek@redhat.com> - 0:1.9.1-1
|
|
|
|
- Update to upstream version 1.9.1
|
|
|
|
|
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.8.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.8.3-4
|
|
|
|
- Regenerate build-requires
|
|
|
|
- Remove old obsoletes/provides
|
|
|
|
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.8.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.8.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Mar 26 2015 Michael Simacek <msimacek@redhat.com> - 0:1.8.3-1
|
|
|
|
- Update to upstream version 1.8.3
|
|
|
|
|
|
|
|
* Mon Nov 3 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.8.2-1
|
|
|
|
- Update to upstream version 1.8.2
|
|
|
|
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.8.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.8.1-4
|
|
|
|
- Use Requires: java-headless rebuild (#1067528)
|
|
|
|
|
|
|
|
* Tue Feb 18 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.8.1-3
|
|
|
|
- Backport upstream patches for MODELLO-284 and MODELLO-285
|
|
|
|
|
|
|
|
* Mon Jan 27 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.8.1-2
|
|
|
|
- Use Maven 3.x APIs
|
|
|
|
|
|
|
|
* Mon Aug 19 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.8.1-1
|
|
|
|
- Update to upstream version 1.8.1
|
|
|
|
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Apr 19 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-2
|
|
|
|
- Build with xmvn
|
|
|
|
- Use better description
|
|
|
|
- Simplify build-requires
|
|
|
|
- Update to current packaging guidelines
|
|
|
|
|
|
|
|
* Thu Feb 21 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-1
|
|
|
|
- Update to upstream version 1.7
|
|
|
|
|
|
|
|
* Mon Feb 18 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.6-1
|
|
|
|
- Update to upstream version 1.6
|
|
|
|
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.5-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 0:1.5-6
|
|
|
|
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
|
|
|
- Replace maven BuildRequires with maven-local
|
|
|
|
|
|
|
|
* Thu Nov 15 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.5-5
|
|
|
|
- Add JPP depmap for maven-project to override versionless depmap
|
|
|
|
- Add missing BR/R: maven-project
|
|
|
|
- Remove unneeded BR: jpa_api
|
|
|
|
|
|
|
|
* Thu Nov 15 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.5-4
|
|
|
|
- Fix license tag
|
|
|
|
- Install text of Apache license
|
|
|
|
|
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
|
|
|
* Mon Aug 8 2011 Alexander Kurtakov <akurtako@redhat.com> 0:1.5-1
|
|
|
|
- Update to upstream 1.5.
|
|
|
|
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.4.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jan 26 2011 Alexander Kurtakov <akurtako@redhat.com> 0:1.4.1-1
|
|
|
|
- Update to upstream 1.4.1.
|
|
|
|
|
|
|
|
* Wed Dec 1 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.4-3
|
|
|
|
- Fix pom filenames (remove poms of integration tests) Resolves rhbz#655818
|
|
|
|
- Use jpackage_script macro to generate script
|
|
|
|
|
|
|
|
* Thu Aug 26 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.4-2
|
|
|
|
- Remove dtdparser BR/R
|
|
|
|
|
|
|
|
* Tue Jul 20 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.4-1
|
|
|
|
- Update to latest upstream version
|
|
|
|
- Re-enable javadoc generation
|
|
|
|
- Remove old workarounds/patches
|
|
|
|
|
|
|
|
* Mon May 24 2010 Yong Yang <yyang@redhat.com> 1.1-2
|
|
|
|
- Fix JPP pom name
|
|
|
|
- Disable javadoc:javadoc due to the failure of maven-doxia
|
|
|
|
|
|
|
|
* Mon May 24 2010 Yong Yang <yyang@redhat.com> 1.1-1
|
|
|
|
- Upgrade to 1.1
|
|
|
|
|
|
|
|
* Fri May 21 2010 Yong Yang <yyang@redhat.com> 1.0.1-1
|
|
|
|
- Upgrade to 1.0.1
|
|
|
|
|
|
|
|
* Thu Aug 20 2009 Andrew Overholt <overholt@redhat.com> 1.0-0.4.a15.0.1
|
|
|
|
- Update to alpha 15 courtesy Deepak Bhole
|
|
|
|
|
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.0-0.3.a8.4.4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.0-0.2.a8.4.4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:1.0-0.1.a8.4.4
|
|
|
|
- drop repotag
|
|
|
|
|
|
|
|
* Tue Mar 20 2007 Matt Wringe <wringe@redhat.com> 0:1.0-0.1.a8.4jpp.3
|
|
|
|
- disable gcj support
|
|
|
|
|
|
|
|
* Tue Mar 13 2007 Matt Wringe <mwringe@redhat.com> 0:1.0-0.1.a8.4jpp.2
|
|
|
|
- Change license to MIT to reflex the actual license specified in the
|
|
|
|
source headers.
|
|
|
|
- fix various rpmlint issues
|
|
|
|
|
|
|
|
* Mon Feb 26 2007 Tania Bento <tbento@redhat.com> 0:1.0-0.1.a8.4jpp.1
|
|
|
|
- Fixed %%Release.
|
|
|
|
- Fixed %%License.
|
|
|
|
- Fixed %%BuildRoot.
|
|
|
|
- Removed %%Vendor.
|
|
|
|
- Removed %%Distribution.
|
|
|
|
- Defined _with_gcj_support and gcj_support.
|
|
|
|
- Fixed instructions on how to generate the source drop.
|
|
|
|
|
|
|
|
* Fri Dec 01 2006 Deepak Bhole <dbhole@redhat.com> 1.0-0.a8.4jpp
|
|
|
|
- Added an obsoletes for older versions of the plugin
|
|
|
|
|
|
|
|
* Thu Oct 19 2006 Deepak Bhole <dbhole@redhat.com> 1.0-0.a8.3jpp
|
|
|
|
- Update for maven2 9jpp
|
|
|
|
- Merge maven-plugin subpackage into the main one
|
|
|
|
|
|
|
|
* Mon Sep 11 2006 Ralph Apel <r.apel at r-apel.de> - 0:1.0-0.a8.2jpp
|
|
|
|
- Add gcj_support option
|
|
|
|
- Add post/postun Requires for javadoc
|
|
|
|
- Don't omit maven-plugin upload
|
|
|
|
|
|
|
|
* Fri Jun 23 2006 Deepak Bhole <dbhole@redhat.com> - 0:1.0-0.a8.1jpp
|
|
|
|
- Upgrade to 1.0-alpha-8
|
|
|
|
- Remove ant build, add maven2 build
|
|
|
|
|
|
|
|
* Thu Jun 01 2006 Fernando Nasser <fnasser@redhat.com> - 0:1.0-0.a4.2jpp
|
|
|
|
- First JPP 1.7 build
|
|
|
|
|
|
|
|
* Mon Nov 07 2005 Ralph Apel <r.apel at r-apel.de> - 0:1.0-0.a4.1jpp
|
|
|
|
- First JPackage build
|