Include private members in javadoc

This commit is contained in:
BoykoAlex
2016-12-14 10:56:34 -05:00
parent 1b26809349
commit 4df222af38
2 changed files with 6 additions and 3 deletions

View File

@@ -375,9 +375,9 @@ class MavenBridge {
configuration.setResolveDependencies(true);
configuration.setResolveVersionRanges(true);
request.setGoals(Arrays.asList(new String[] { "compile", "javadoc:javadoc" }));
// Properties userProperties = (Properties) request.getUserProperties().clone();
// userProperties.put("skipTests", "true");
// request.setUserProperties(userProperties);
Properties userProperties = (Properties) request.getUserProperties().clone();
userProperties.put("show", "private");
request.setUserProperties(userProperties);
return lookup(Maven.class).execute(request);
} catch (MavenExecutionRequestPopulationException e) {
throw new MavenException(e);

View File

@@ -19,6 +19,9 @@ public class FooProperties {
private Color color;
//Map Enum -> Atomic
/**
* Some color names. Do you see me?
*/
private Map<Color,String> colorNames;
//Map Atomic -> Enum