Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xmvn-connector-ivy for openSUSE:Factory checked in at 2023-05-05 15:59:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xmvn-connector-ivy (Old) and /work/SRC/openSUSE:Factory/.xmvn-connector-ivy.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xmvn-connector-ivy" Fri May 5 15:59:07 2023 rev:3 rq:1084990 version:4.0.0~20220623.8da91ea Changes: -------- --- /work/SRC/openSUSE:Factory/xmvn-connector-ivy/xmvn-connector-ivy.changes 2022-07-14 16:33:53.564606508 +0200 +++ /work/SRC/openSUSE:Factory/.xmvn-connector-ivy.new.1533/xmvn-connector-ivy.changes 2023-05-05 15:59:23.380808584 +0200 @@ -1,0 +2,5 @@ +Fri May 5 08:41:22 UTC 2023 - Fridrich Strba <[email protected]> + +- Upgrade to git checkout from June 2022 with our patch integrated + +------------------------------------------------------------------- Old: ---- xmvn-connector-ivy-4.0.0~20220302.6a60be3.tar.xz New: ---- xmvn-connector-ivy-4.0.0~20220623.8da91ea.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xmvn-connector-ivy.spec ++++++ --- /var/tmp/diff_new_pack.ZrjOlm/_old 2023-05-05 15:59:23.840811220 +0200 +++ /var/tmp/diff_new_pack.ZrjOlm/_new 2023-05-05 15:59:23.844811243 +0200 @@ -1,7 +1,7 @@ # # spec file # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,7 +20,7 @@ %global subname connector-ivy %bcond_with tests Name: %{parent}-%{subname} -Version: 4.0.0~20220302.6a60be3 +Version: 4.0.0~20220623.8da91ea Release: 0 Summary: XMvn Connector for Apache Ivy License: Apache-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.ZrjOlm/_old 2023-05-05 15:59:23.892811517 +0200 +++ /var/tmp/diff_new_pack.ZrjOlm/_new 2023-05-05 15:59:23.896811541 +0200 @@ -2,7 +2,7 @@ <service name="tar_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/fedora-java/xmvn-connector-ivy.git</param> - <param name="revision">6a60be35be44cf67d0832c6758c0cd1ca09f5318</param> + <param name="revision">8da91ea478427a4d241949ab5ca240cc983fde0f</param> <param name="versionformat">4.0.0~%cd.%h</param> </service> <service name="recompress" mode="disabled"> ++++++ xmvn-connector-ivy-4.0.0~20220302.6a60be3.tar.xz -> xmvn-connector-ivy-4.0.0~20220623.8da91ea.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmvn-connector-ivy-4.0.0~20220302.6a60be3/pom.xml new/xmvn-connector-ivy-4.0.0~20220623.8da91ea/pom.xml --- old/xmvn-connector-ivy-4.0.0~20220302.6a60be3/pom.xml 2022-03-02 06:41:02.000000000 +0100 +++ new/xmvn-connector-ivy-4.0.0~20220623.8da91ea/pom.xml 2022-06-23 06:37:59.000000000 +0200 @@ -78,11 +78,11 @@ <project.build.sourceEncoding>US-ASCII</project.build.sourceEncoding> <xmvnVersion>3.1.0</xmvnVersion> <ivyVersion>2.5.0</ivyVersion> - <slf4jVersion>2.0.0-alpha6</slf4jVersion> + <slf4jVersion>2.0.0-alpha7</slf4jVersion> <junitVersion>5.8.2</junitVersion> <easymockVersion>4.3</easymockVersion> - <compilerPluginVersion>3.10.0</compilerPluginVersion> - <surefireVersion>3.0.0-M5</surefireVersion> + <compilerPluginVersion>3.10.1</compilerPluginVersion> + <surefireVersion>3.0.0-M7</surefireVersion> </properties> <dependencies> <dependency> @@ -119,6 +119,12 @@ <version>${slf4jVersion}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.fedoraproject.xmvn</groupId> + <artifactId>xmvn-core</artifactId> + <version>${xmvnVersion}</version> + <scope>test</scope> + </dependency> </dependencies> <build> <plugins> @@ -126,19 +132,35 @@ <artifactId>maven-compiler-plugin</artifactId> <version>${compilerPluginVersion}</version> <configuration> - <release>11</release> - </configuration> - </plugin> - <plugin> - <artifactId>maven-surefire-plugin</artifactId> - <version>${surefireVersion}</version> - <!-- TODO: remove once easymock is updated. See: https://github.com/easymock/easymock/issues/274 --> - <configuration> - <argLine> - --add-opens java.base/java.lang=ALL-UNNAMED - </argLine> + <source>1.8</source> + <target>1.8</target> </configuration> </plugin> </plugins> </build> + <profiles> + <profile> + <id>jdk9+</id> + <activation> + <jdk>[9,)</jdk> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <release>8</release> + </configuration> + </plugin> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>${surefireVersion}</version> + <configuration> + <argLine>--add-opens java.base/java.lang=ALL-UNNAMED</argLine> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project>
