119 lines
3.7 KiB
RPMSpec
119 lines
3.7 KiB
RPMSpec
%global namedreltag %{nil}
|
|
%global namedversion %{version}%{?namedreltag}
|
|
|
|
Name: jmock
|
|
Version: 2.8.2
|
|
Release: 1
|
|
Summary: Java library for testing code with mock objects
|
|
License: BSD
|
|
Url: http://www.jmock.org/
|
|
Source0: https://github.com/jmock-developers/jmock-library/archive/%{version}.tar.gz
|
|
|
|
BuildRequires: maven-local mvn(cglib:cglib) mvn(junit:junit)
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-dependency-plugin) mvn(org.beanshell:bsh)
|
|
BuildRequires: mvn(org.codehaus.mojo:exec-maven-plugin) mvn(org.hamcrest:hamcrest-library)
|
|
BuildRequires: mvn(org.objenesis:objenesis) mvn(org.ow2.asm:asm)
|
|
BuildRequires: mvn(org.sonatype.oss:oss-parent:pom:)
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
Mock objects help you design and test the interactions between the objects in
|
|
your programs.
|
|
The jMock library:
|
|
* makes it quick and easy to define mock objects, so you don't break the
|
|
rhythm of programming.
|
|
* lets you precisely specify the interactions between your objects, reducing
|
|
the brittleness of your tests.
|
|
* works well with the auto-completion and re-factoring features of your IDE
|
|
* plugs into your favorite test framework
|
|
* is easy to extend.
|
|
|
|
%package example
|
|
Summary: jMock Examples
|
|
%description example
|
|
jMock Examples.
|
|
|
|
%package junit3
|
|
Summary: jMock JUnit 3 Integration
|
|
%description junit3
|
|
jMock JUnit 3 Integration.
|
|
|
|
%package junit4
|
|
Summary: jMock JUnit 4 Integration
|
|
%description junit4
|
|
jMock JUnit 4 Integration.
|
|
|
|
%package legacy
|
|
Summary: jMock Legacy Plugins
|
|
%description legacy
|
|
Plugins that make it easier to use jMock with legacy code.
|
|
|
|
%package parent
|
|
Summary: jMock Parent POM
|
|
%description parent
|
|
jMock Parent POM.
|
|
|
|
%package testjar
|
|
Summary: jMock Test Jar
|
|
%description testjar
|
|
Source for JAR files used in jMock Core tests.
|
|
|
|
%package javadoc
|
|
Summary: Javadoc for %{name}
|
|
%description javadoc
|
|
This package contains javadoc for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-library-%{namedversion}
|
|
%pom_remove_plugin :nexus-staging-maven-plugin
|
|
%pom_remove_plugin :maven-javadoc-plugin
|
|
%pom_remove_plugin :maven-source-plugin
|
|
%pom_remove_plugin :maven-gpg-plugin testjar
|
|
%pom_change_dep cglib: :cglib
|
|
%pom_change_dep cglib: :cglib %{name}
|
|
sed -i "s|%classpath|$(build-classpath objectweb-asm/asm)|" %{name}/pom.xml
|
|
%pom_xpath_remove pom:build %{name}-example
|
|
%pom_xpath_inject "pom:project" "
|
|
<build>
|
|
<sourceDirectory>src/main</sourceDirectory>
|
|
</build>" %{name}-example
|
|
# package org.jmock.integration.junit{3,4} do not exist
|
|
%pom_add_dep org.%{name}:%{name}-junit3:'${project.version}' %{name}-example
|
|
%pom_add_dep org.%{name}:%{name}-junit4:'${project.version}' %{name}-example
|
|
%mvn_alias org.%{name}:%{name} :%{name}-script
|
|
%mvn_package org.%{name}:%{name}::tests: %{name}
|
|
%mvn_package org.%{name}:%{name}-junit3::tests: %{name}-junit3
|
|
# AssertionError: Expected: (null or an empty string) but: was "the Mockery is not thread-safe: use a Synchroniser to ensure thread safety"
|
|
rm jmock-legacy/src/test/java/org/jmock/test/acceptance/MockeryFinalizationAcceptanceTests.java
|
|
|
|
%build
|
|
%mvn_build -s
|
|
|
|
%install
|
|
%mvn_install
|
|
|
|
%files -f .mfiles-%{name}
|
|
%doc README*
|
|
%license LICENSE.txt
|
|
|
|
%files example -f .mfiles-%{name}-example
|
|
|
|
%files junit3 -f .mfiles-%{name}-junit3
|
|
|
|
%files junit4 -f .mfiles-%{name}-junit4
|
|
|
|
%files legacy -f .mfiles-%{name}-legacy
|
|
|
|
%files parent -f .mfiles-%{name}-parent
|
|
%license LICENSE.txt
|
|
|
|
%files testjar -f .mfiles-%{name}-testjar
|
|
%license LICENSE.txt
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%license LICENSE.txt
|
|
|
|
%changelog
|
|
* Wed Aug 12 2020 maminjie <maminjie1@huawei.com> - 2.8.2-1
|
|
- package init
|