我有一个maven多模块项目。 这一个模块(编译为中.jar
)只包含域对象,这将在客户端和服务器端(我添加此使用.jar
为依赖于其他的我模块)。
我知道,GWT模块,其中将从共享使用的对象.jar
,还必须有源文件编译成功。 于是,我就添加到我pom.xml
两个:
<resources>
<resource>
<directory>src/main/java/<path></directory>
<includes>
<include>**/*.java</include>
<include>**/*.gwt.xml</include>
</includes>
</resource>
</resources>
和
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<versionRange>[${gwt.version}]</versionRange>
<goals>
<goal>resources</goal>
</goals>
<plugin>
但造成.jar
不包含GWT模块源(即gwt.xml
)。 域类的所有来源被加入以及(在根目录下.jar
),但ModuleName.gwt.xml
不。
在哪里的问题? 谢谢。