Maven中的属性

时间:2012-07-18 13:20:31

标签: maven

我想创建这种属性:

<properties> 
  <ignoredpackage>
     <ignore>com.example.*</ignore>
     <ignore>com.another.example.*</ignore> 
  </ignoredpackage>
<properties>

所以我可以在我的pom中使用它:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>cobertura-maven-plugin</artifactId>
    <configuration>
      <instrumentation>
        <ignores>
          ${ignoredpackage}
        </ignores>
        <excludes>
        ...

但这不起作用,还有其他办法吗?

1 个答案:

答案 0 :(得分:0)

你不能这样做。

<properties/>标记的工作方式如下:

<properties>
    <foo>bar</foo>
    <blah>dotfoo</blah>
</properties>