Maven模块jar没有添加到war lib中

时间:2016-07-05 18:06:12

标签: maven

我有多模块Maven项目:

private void animate() {
        View viewToShiftOut = mNormalModelayoutContainer;
        View viewToShiftIn = mEditModelayoutContainer;
        ObjectAnimator outAnim = ObjectAnimator.ofFloat(viewToShiftOut, "y", 0, -heightOfScreen);
        ObjectAnimator inAnim = ObjectAnimator.ofFloat(viewToShiftIn, "y", heightOfScreen , 0);
        outAnim.setDuration(1000);
        inAnim.setDuration(1000);
        outAnim.start();
        inAnim.start();
    }

在战争的POM中,我添加了Web和Core的依赖:

Parent 
  Core module
  Web module
  War Module

并在Web <?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.team.hello</groupId> <artifactId>helloParent</artifactId> <version>0.0.1-SNAPSHOT</version> </parent> <artifactId>hello-war</artifactId> <packaging>war</packaging> <name>hello-war Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.team.hello</groupId> <artifactId>hello-web</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> <dependency> <groupId>com.team.hello</groupId> <artifactId>hello-core</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> </dependencies> <build> <finalName>hello-war</finalName> <pluginManagement> <plugins> <plugin> <artifactId>maven-war-plugin</artifactId> <version>2.6</version> <configuration> <packagingIcludes>WEB-INF/lib/*.jar</packagingIcludes> </configuration> </plugin> </plugins> </pluginManagement> </build> </project> 中添加了Core模块的依赖项。

使用pom.xml进行构建时,我在War clean -e install文件夹中看到了两个jar,但是在发布到jboss-eap时,它只复制了Web lib将文件归档到jar文件夹,但不归档为Core lib文件。

你能告诉我我错在哪里吗?

1 个答案:

答案 0 :(得分:2)

最后我找到了解决方案。我删除了插件管理,然后删除了war模块的.settings和.project,然后重新导入项目(检查已部署的程序集,它有核心和web和maven)清理了jboss eclipse(在eclipse jboss服务器中 - 右键单击​​ - &gt;干净)然后它发布了jar。