setupDefaultProject( project );
project.addProperty( "testingPropertyOne", "maven" );
project.addProperty( "testingPropertyTwo", "rules" );
ArtifactRepository repo = (ArtifactRepository) getVariableValueFromObject( mojo, "localRepository" );
String path = repo.pathOf( new DefaultArtifact( "test-filtered-bundles", "test-filtered-bundles",
VersionRange.createFromVersion( "2" ), null, "jar", "",
new DefaultArtifactHandler() ) );
File file = new File( repo.getBasedir() + "/" + path + ".jar" );
file.getParentFile().mkdirs();
buildResourceBundle( "default-filterbundles-two-create", null, new String[]{"PROPERTIES.txt.vm"}, file );
mojo.execute();
// executing a second time (example: forked lifecycle) should still work