maven 小结(打包和单元测试)
<build><plugins><plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <finalName>tlog2-service-test</finalName> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.taobao.tlog.test.StarAgentGatherTester</mainClass> </transformer> </transformers> </configuration> </plugin></plugins></build>
?
2. 如果希望单元测试代码也被打包
参考:http://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html