Skip to content
New issue

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

added comment that explaines that mvn resources:testResources has to be executed after each clean in Eclipse #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@
*/
public class AnnoMojoDescriptorExtractorTest extends TestCase {

/**
* NOTE: The source files in src/test/resources/source have to be
* copied to the output directory as .java-Files for this test to be
* sucessfull.
* The Eclipse Project Configuration created with "mvn eclipse:eclipse"
* excludes .java files in the resources dir by default. If this filter
* is removed the .java-Files are still comiled by eclipse before copying
* it to the target directory.
*
* To launch this test in eclipse the following Maven command has to be
* executed after each "Project - clean" in Eclipse:
* "mvn resources:testResources"
*/
public void testCreateMojoDescriptor() throws Exception {
AnnoMojoDescriptorExtractor extractor = new AnnoMojoDescriptorExtractor();

Expand Down