如何使用正则表达式排除tycho-source功能插件配置中的feature.source?

时间:2014-12-09 07:19:54

标签: tycho

在pom.xml中使用tycho-source-feature-plugin时,带有.source的功能名称在excludes下给出。是否可以使用正则表达式来排除.source的所有功能,而不是提供功能。

<plugin>
                <groupId>org.eclipse.tycho.extras</groupId>
                <artifactId>tycho-source-feature-plugin</artifactId>
                <version>${tycho-source-feature-plugin-Version}</version>
                <executions>
                    <execution>
                        <id>source-feature</id>
                        <phase>package</phase>
                        <goals>
                            <goal>source-feature</goal>
                        </goals>
                        <configuration>
                            <excludes>
                                <feature id="myfeature.source" />
                            </excludes>
                            <labelSuffix></labelSuffix>
                        </configuration>
                    </execution>
                </executions>
                <configuration>
                    <labelSuffix></labelSuffix>
                </configuration>
            </plugin>

0 个答案:

没有答案