将Dynamic Web Project转换为Maven时出现问题

时间:2015-03-30 04:37:21

标签: java eclipse maven

我正在使用Eclipse Luna和Websphere Application Sever 8.5。

当我使用Websphere Application Sever 8.5运行动态Web项目时,它运行正常。

然而,当我将动态网络项目转换为maven项目时,我正在解决 53个错误,从Missing artifact com.ibm.websphere开始,例如 Missing artifact com.ibm.websphere.xml:xmlapi:jar:1.0.0' all located in my pom.xml

我也遇到了这个错误:

  • The container 'Maven Dependencies' references non existing library C:\Users\Brian242\.m2\repository\com\ibm\websphere\ws\com.ibm.ws.wccm\1.0.0\com.ibm.ws.wccm-1.0.0.jar

不确定这是否是问题的一部分。

我到处寻找解决方案但没找到任何东西。所以我决定寻求一些帮助。有谁知道如何解决上述问题?

谢谢你, 布赖恩

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>TrialProj</groupId>
  <artifactId>TrialProj</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>
  <dependencies>
    <dependency>
      <groupId>com.ibm.tools.target</groupId>
      <artifactId>was</artifactId>
      <version>8.5.5</version>
      <type>pom</type>
      <scope>provided</scope>
    </dependency>
  </dependencies>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <warSourceDirectory>WebContent</warSourceDirectory>
          <failOnMissingWebXml>false</failOnMissingWebXml>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

2 个答案:

答案 0 :(得分:0)

您创建了M2_REPO环境变量吗?

  • 右键单击项目根目录
  • 构建路径 - &gt;配置Puild路径......
  • 点击“添加变量”按钮
  • 点击“设置变量...”
  • 点击“新建...”
  • 名称:M2_REPO
  • 路径:/ path_to_repository_the_maven /
  • 点击确定
  • 重新编译

答案 1 :(得分:0)

如果您正在使用eclipse,请确保使用以下命令添加对eclipse Web工具的支持:

mvn eclipse:eclipse -Dwtpversion=2.0

(2.0或您所需的版本)然后编译maven项目:

mvn compile