diff --git a/simian/plugin.jelly b/simian/plugin.jelly index da5ea930..3a749dab 100644 --- a/simian/plugin.jelly +++ b/simian/plugin.jelly @@ -52,7 +52,8 @@ failOnDuplication="${maven.simian.failonduplication}"> - + + diff --git a/simian/plugin.properties b/simian/plugin.properties index 5c8f0af8..7de5ac87 100644 --- a/simian/plugin.properties +++ b/simian/plugin.properties @@ -6,3 +6,6 @@ maven.simian.ignorestringcase = false maven.simian.ignorenumbers = false maven.simian.ignoresubtypenames = false maven.simian.ignoremodifiers = false + +maven.simian.includes = **/*.java +maven.simian.excludes = diff --git a/simian/project.xml b/simian/project.xml index 9ba00da7..1216608c 100644 --- a/simian/project.xml +++ b/simian/project.xml @@ -68,6 +68,15 @@ Maven Plugin + + Eric Pugh + epugh + epugh@opensourceconnections.com + OpenSource Connections + + Maven Plugin + + diff --git a/simian/xdocs/changes.xml b/simian/xdocs/changes.xml index f09995b6..0ee42cf5 100644 --- a/simian/xdocs/changes.xml +++ b/simian/xdocs/changes.xml @@ -9,6 +9,9 @@ + + Allow classes to be included/excluded. + Allow test case to be run. diff --git a/simian/xdocs/properties.xml b/simian/xdocs/properties.xml index cdfe1738..55831179 100644 --- a/simian/xdocs/properties.xml +++ b/simian/xdocs/properties.xml @@ -69,6 +69,30 @@ Ignore modifiers (Java, C#, C, C++, JavaScript): public, protected, static, etc. + + maven.simian.includes + Yes + + Specifies a comma-separated list of Ant patterns to use + when matching files in the source tree to be included in the + Simian report. The pattern specified is relative to + ${maven.src.dir}. The default value is + **/*.java, which matches all Java source files + in the source tree (specified by the ${maven.src.dir} + property. + + + + maven.simian.excludes + Yes + + Specifies a comma-separated list of Ant patterns to use when + matching files in the source tree to be excluded from the + Simian report. The pattern specified is relative to + ${maven.src.dir}. The default value is to not + exclude any files. + +