如何配置允许lib可以在src和test中使用?

时间:2011-01-05 22:38:43

标签: maven-2 maven

我希望我的lib可以在src和test类中使用。 有一个范围属性......我应该用它做什么吗?

感谢?

<dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-transports-http</artifactId>
            <version>${cxf.version}</version>
            <scope>what should i put here</scope>
        </dependency>

1 个答案:

答案 0 :(得分:1)

您可以选择“编译”或删除范围标记,因为“编译”无论如何都是默认值。