!1 package init

Merge pull request !1 from 康少强/master
This commit is contained in:
openeuler-ci-bot 2020-09-01 18:17:26 +08:00 committed by Gitee
commit 9867f3fd19
3 changed files with 63 additions and 0 deletions

59
reflections.spec Normal file
View File

@ -0,0 +1,59 @@
%global githash 91af9aa088b9e29d36c44b53e63b378a2ba501cd
Name: reflections
Version: 0.9.10
Release: 1
Summary: Java run-time meta-data analysis
License: WTFPL
URL: https://github.com/ronmamo/reflections
Source0: https://github.com/ronmamo/reflections/archive/91af9aa088b9e29d36c44b53e63b378a2ba501cd/%{name}-91af9aa088b9e29d36c44b53e63b378a2ba501cd.tar.gz
BuildRequires: maven-local mvn(com.google.code.findbugs:annotations)
BuildRequires: mvn(com.google.code.gson:gson) mvn(dom4j:dom4j)
BuildRequires: mvn(javax.servlet:javax.servlet-api) mvn(junit:junit)
BuildRequires: mvn(org.apache.commons:commons-vfs2) mvn(org.javassist:javassist)
BuildRequires: mvn(org.jsr-305:ri) mvn(org.slf4j:slf4j-api) mvn(org.slf4j:slf4j-simple)
BuildRequires: java-atk-wrapper
BuildArch: noarch
%description
A Java run-time meta-data analysis, in the spirit of Scannotations
Reflections scans your class-path, indexes the meta-data, allows you
to query it on run-time and may save and collect that information
for many modules within your project.
Using Reflections you can query your meta-data such as:
* get all sub types of some type
* get all types/methods/fields annotated with some annotation,
w/o annotation parameters matching
* get all resources matching matching a regular expression
%package javadoc
Summary: Javadoc for %{name}
%description javadoc
This package contains javadoc for %{name}.
%prep
%setup -q -n %{name}-%{githash}
find -name "*.class" -print -delete
find -name "*.jar" -print -delete
%pom_remove_plugin :maven-clean-plugin
%pom_remove_plugin :maven-enforcer-plugin
%pom_remove_plugin :maven-source-plugin
%pom_remove_plugin :maven-javadoc-plugin
%pom_change_dep :servlet-api :javax.servlet-api:3.1.0
%pom_add_dep org.jsr-305:ri
%mvn_file :%{name} %{name}
%build
%mvn_build -- -Dproject.build.sourceEncoding=UTF-8
%install
%mvn_install
%files -f .mfiles
%doc README.md
%license COPYING.txt
%files javadoc -f .mfiles-javadoc
%license COPYING.txt
%changelog
* Mon Aug 17 2020 Shaoqiang Kang <kangshaoqiang1@huawei.com> - 0.9.10-1
- Package init

4
reflections.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: github
src_repo: ronmamo/reflections
tag_prefix: "^"
seperator: "."