We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The ApplicationModule should accept ProjectResourceFinder<T>s to search for resources in the source sets of the module.
ApplicationModule
ProjectResourceFinder<T>
see #225 (comment)
searchMainResources(ProjectResourceFinder<T>)
src/main/resources
searchTestResources(ProjectResourceFinder<T>)
src/test/resources
searchMainJava(ProjectResourceFinder<T>)
src/main/java
searchTestJava(ProjectResourceFinder<T>)
src/test/java
The text was updated successfully, but these errors were encountered:
WIP #304
49f44cc
Adds search capabilities to ApplicationModule, closes #304
7ec46fe
fabapp2
Successfully merging a pull request may close this issue.
What needs to be done
The
ApplicationModule
should acceptProjectResourceFinder<T>
s to search for resources in the source sets of the module.Why it needs to be done
see #225 (comment)
Acceptance Criteria
searchMainResources(ProjectResourceFinder<T>)
searches insrc/main/resources
of the modulesearchTestResources(ProjectResourceFinder<T>)
searches insrc/test/resources
of the modulesearchMainJava(ProjectResourceFinder<T>)
searches insrc/main/java
of the modulesearchTestJava(ProjectResourceFinder<T>)
searches insrc/test/java
of the moduleThe text was updated successfully, but these errors were encountered: