Fridrich Strba 2024-10-12 20:44:32 +00:00 committed by Git OBS Bridge
parent 9b454394c7
commit d2899006f3
6 changed files with 58 additions and 10 deletions

View File

@ -2,11 +2,10 @@
<service name="tar_scm" mode="disabled">
<param name="scm">git</param>
<param name="url">https://github.com/apache/maven-reporting-impl.git</param>
<param name="revision">maven-reporting-impl-4.0.0-M15</param>
<param name="revision">maven-reporting-impl-4.0.0</param>
<param name="match-tag">maven-reporting-impl-*</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="versionrewrite-pattern">maven-reporting-impl-(\d+).(\d+).(\d+)-(.*)</param>
<param name="versionrewrite-replacement">\1.\2.\3~\4</param>
<param name="versionrewrite-pattern">maven-reporting-impl-(.*)</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8896b36a9669d22f1db210d330556812b74d76ae3742d01275fbc8d89885db8f
size 18564

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff2058b108ffead7141a20ca37a553b096c50c7272d7cf9f2f184efc1e4bf956
size 18088

View File

@ -10,7 +10,7 @@
<property name="project.groupId" value="org.apache.maven.reporting"/>
<property name="project.artifactId" value="maven-reporting-impl"/>
<property name="project.version" value="4.0.0-M15"/>
<property name="project.version" value="4.0.0"/>
<property name="spec.version" value="4.0"/>

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Sat Oct 12 20:38:06 UTC 2024 - Fridrich Strba <fstrba@suse.com>
- Upgrade to version 4.0.0
* Bug
+ MSHARED-1275: MavenReport#canGenerateReport() is invoked twice
* New Feature
+ MSHARED-390: Add startSection method
AbstractMavenReportRenderer where anchor != name
+ MSHARED-1168: Add support for markup output
+ MSHARED-1185: Introduce
AbstractMavenReportRenderer#verbatimSource()
* Improvement
+ MSHARED-480: Use maven-site-plugin's site.xml to use site's
skin instead of default when run as mojo
+ MSHARED-1099: Render with a skin when report is run in
standalone mode
+ MSHARED-1106: Improve and simplify section handling
+ MSHARED-1174: Don't wrap elements in anchors
+ MSHARED-1181: Populate SiteRenderingContext#getPublishDate()
with ${project.build.outputTimestamp}
+ MSHARED-1182: Drop incorrect usage of
SinkEventAttributeSet#BOXED
+ MSHARED-1183: Don't pass implied args to
AbstractMavenReportRenderer#startTable()
+ MSHARED-1184: Drop unnecessary use of type attribute with
JavaScript
+ MSHARED-1232: Properly populate
DocumentRenderingContext#generator when run in standalone mode
+ MSHARED-1295: Have ${project.build.outputTimestamp} injected
as @Parameter
+ MSHARED-1314: mark execute() final to avoid users extending
reporting-impl implementation
+ MSHARED-1327: Change default value of output directory in
AbstractMavenReport
+ MSHARED-1328: Consistently log when skipping report goal
execution
+ MSHARED-1343: Make parameter outputDirectory read/write in
AbstractMavenReport
+ MSHARED-1438: Provide protected methods for XRef location
construction
* Task
+ MSHARED-1055: Upgrade to Java 8
+ MSHARED-1326: Improve MavenReport interface /
AbstractMavenReport class API
- Fetch sources using source service from Github
- Removed patch:
* 0001-Remove-dependency-on-junit-addons.patch
+ not needed with this version
-------------------------------------------------------------------
Wed Feb 21 06:01:37 UTC 2024 - Fridrich Strba <fstrba@suse.com>

View File

@ -16,9 +16,8 @@
#
%global pom_version 4.0.0-M15
Name: maven-reporting-impl
Version: 4.0.0~M15
Version: 4.0.0
Release: 0
Summary: Abstract classes to manage report generation
License: Apache-2.0
@ -94,7 +93,7 @@ ant jar javadoc
%install
# jar
install -dm 0755 %{buildroot}%{_javadir}/%{name}
install -pm 0644 target/%{name}-%pom_version.jar %{buildroot}%{_javadir}/%{name}/%{name}.jar
install -pm 0644 target/%{name}-%{version}.jar %{buildroot}%{_javadir}/%{name}/%{name}.jar
# pom
install -dm 0755 %{buildroot}%{_mavenpomdir}/%{name}
%{mvn_install_pom} pom.xml %{buildroot}%{_mavenpomdir}/%{name}/%{name}.pom