i want my lib can be used by both in src and test class. there is a scope properties... should i do something with it?
thanks?
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxf.version}</version>
开发者_如何学C <scope>what should i put here</scope>
</dependency>
Either you take "compile" or you remove the scope tag, as "compile" is the default for it anyway.
精彩评论