【问题标题】:Dynamic web module in Eclipse Mars with M2E unstable config when changing versions in project facets在项目方面更改版本时,Eclipse Mars 中具有 M2E 不稳定配置的动态 Web 模块
【发布时间】:2016-08-29 21:10:51
【问题描述】:

我有一个配置为具有 M2E 的 Maven 项目的动态 Web 模块项目。我只使用 Eclipse 的嵌入式 maven 对项目做任何事情,所以没有命令行清理等。

我正在使用 Tomcat 7,我遇到的第一个问题是,当我运行 maven->update project... 时,M2E 会将动态 Web 模块方面更新为 3.1,这样我就无法再部署到 Tomcat。

我无法将构面降级为 3.0。 Eclipse 只是说“不能那样做”。但是我可以取消选择构面,然后apply,然后将其设置为3.0

那时,我可以将应用程序部署到 tomcat 中。

但是,一旦我在项目上再次运行maven->update project...(例如称为Foo),项目方面就会升级到3.1,它会创建一个名为FooEAR 的新项目,其中war 模块位于EAR 部署程序集。

我的配置有什么严重错误? (我没有检查项目方面 EAR)

[更新] 在非战争项目上仍然得到奇怪的 myprojectEAR 项目。

日食火星 4.5.1

M2E 1.6.2

pom.xml:

<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.foo</groupId>
    <artifactId>foo-parent</artifactId>
    <version>1.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>foo</artifactId>
  <version>0.0.6-SNAPSHOT</version>
  <packaging>war</packaging>
  <properties>
    <targetRepositoryId>init later</targetRepositoryId>
    <targetRepositoryUrl>init later</targetRepositoryUrl>
  </properties>
  <build>
    <resources>
      <resource>
        <directory>${basedir}/src/main/resources</directory>
        <filtering>false</filtering>
      </resource>
      <resource>
        <directory>${basedir}/src/main/resources</directory>
        <targetPath>${basedir}/src/main/javadoc</targetPath>
        <filtering>true</filtering>
        <includes>
          <include>**/overview.html</include>
        </includes>
      </resource>
      <resource>
        <directory>${basedir}/thunder</directory>
        <targetPath>${project.build.directory}/thunder</targetPath>
        <filtering>true</filtering>
        <includes>
          <include>*</include>
        </includes>
      </resource>
    </resources>
    <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
              <addClasspath>true</addClasspath>
              <classpathPrefix>dependency-jars/</classpathPrefix>
            </manifest>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <configuration>
          <warSourceDirectory>src/main/webapp</warSourceDirectory>
          <failOnMissingWebXml>false</failOnMissingWebXml>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptor>src/assembly/zip-file.xml</descriptor>
        </configuration>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-deploy-plugin</artifactId>
        <executions>
          <execution>
            <id>ZipOntoNexus</id>
            <phase>deploy</phase>
            <goals>
              <goal>deploy-file</goal>
            </goals>
            <configuration>
              <file>${project.build.directory}/${project.build.finalName}.zip</file>
              <groupId>${project.groupId}</groupId>
              <artifactId>${project.artifactId}-zip</artifactId>
              <version>${project.version}</version>
              <repositoryId>${targetRepositoryId}</repositoryId>
              <url>${targetRepositoryUrl}</url>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-failsafe-plugin</artifactId>
        <version>2.18.1</version>
        <configuration>
          <groups>com.foo.IntegrationTest</groups>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>integration-test</goal>
            </goals>
            <configuration>
              <includes>
                <include>**/*.class</include>
              </includes>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-checkstyle-plugin</artifactId>
        <version>2.17</version>
        <configuration>
          <configLocation>${basedir}/checkstyle/checkstyle.xml</configLocation>
          <propertiesLocation>${basedir}/checkstyle/checkstyle-maven.properties</propertiesLocation>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>run</goal>
            </goals>
            <phase>prepare-package</phase>
            <configuration>
              <tasks>
                <delete failonerror="false">
                  <fileset
                    dir="${project.build.directory}/${project.build.finalName}"
                    includes="version*.txt" />
                </delete>
                <mkdir
                  dir="${project.build.directory}/${project.build.finalName}" />
                <touch
                  file="${project.build.directory}/${project.build.finalName}/version-${project.version}.txt" />
              </tasks>
            </configuration>
          </execution>
          <execution>
            <id>debug deploy</id>
            <goals>
              <goal>run</goal>
            </goals>
            <phase>verify</phase>
            <configuration>
              <tasks if="project.version  SNAPSHOT">
                <property name="targetRepositoryUrl" 
                    value="${project.distributionManagement.snapshotRepository.url}" />
                <echo message="url=${targetRepositoryUrl}" />
              </tasks>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <version>1.7</version>
        <!-- add-test-source goal executed at generate-test-sources phase. -->
        <!-- http://www.petrikainulainen.net/programming/maven/integration-testing-with-maven/ -->
        <executions>
          <execution>
            <id>add-integration-test-sources</id>
            <phase>generate-test-sources</phase>
            <goals>
              <goal>add-test-source</goal>
            </goals>
            <configuration>
              <sources>
                <source>src/integration-test/java</source>
              </sources>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.pitest</groupId>
        <artifactId>pitest-maven</artifactId>
        <version>1.1.5</version>
        <configuration>
          <targetClasses>
            <param>com.foo.*</param>
          </targetClasses>
          <targetTests>
            <param>com.foo.*</param>
          </targetTests>
          <excludedGroups>
            <excludedGroup>com.foo.PitSkip</excludedGroup>
          </excludedGroups>
        </configuration>
      </plugin>
      <plugin>
        <groupId>com.fortify.ps.maven.plugin</groupId>
        <artifactId>maven-sca-plugin</artifactId>
        <version>3.50</version>
      </plugin>
    </plugins>
    <pluginManagement>
      <plugins>
        <!--This plugin's configuration is used to store Eclipse m2e settings 
          only. It has no influence on the Maven build itself. -->
        <plugin>
          <groupId>org.eclipse.m2e</groupId>
          <artifactId>lifecycle-mapping</artifactId>
          <version>1.0.0</version>
          <configuration>
            <lifecycleMappingMetadata>
              <pluginExecutions>
                <pluginExecution>
                  <pluginExecutionFilter>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>build-helper-maven-plugin</artifactId>
                    <versionRange>[1.7,)</versionRange>
                    <goals>
                      <goal>add-test-source</goal>
                    </goals>
                  </pluginExecutionFilter>
                  <action>
                    <ignore></ignore>
                  </action>
                </pluginExecution>
                <pluginExecution>
                  <pluginExecutionFilter>
                    <groupId>org.jacoco</groupId>
                    <artifactId>jacoco-maven-plugin</artifactId>
                    <versionRange>[0.5,)
                    </versionRange>
                    <goals>
                      <goal>prepare-agent</goal>
                    </goals>
                  </pluginExecutionFilter>
                  <action>
                    <!-- see http://wiki.eclipse.org/M2E_plugin_execution_not_covered -->
                    <ignore></ignore>
                  </action>
                </pluginExecution>
                <pluginExecution>
                  <pluginExecutionFilter>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-antrun-plugin</artifactId>
                    <versionRange>[1.3,)</versionRange>
                    <goals>
                      <goal>run</goal>
                    </goals>
                  </pluginExecutionFilter>
                  <action>
                    <execute>
                      <runOnIncremental>true</runOnIncremental>
                    </execute>
                  </action>
                </pluginExecution>
              </pluginExecutions>
            </lifecycleMappingMetadata>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>

【问题讨论】:

  • @khmarbaise 它在那里,为了简洁起见,减去了我认为不相关的依赖项和报告部分。
  • 你为什么要在一个战争项目中执行 maven-jar-plugin?为什么要单独使用 maven-deploy-plugin 部署 zip 文件,因为这会自动完成,因为您使用的是 maven-assembly-plugin ?
  • 不知道maven-jar-plugin,别人把它放进去的。没见过。但是zip文件需要通过deploy-file部署,这样maven会自动为它生成一个pom。如果我使用deploy:deploy 部署它,那么它会在此处与整个 pom 一起部署,其中包括packaging=war,并且 foobars 是我们需要packaging=zip 的内部部署工具。它也没有完成。所以本质上这些东西看起来很丑,但对这里的问题没有任何影响。
  • 您通常应该通过 mvn clean deploy 进行部署,而不是 maven-assembly-plugin 会创建一个 zip 文件,该文件也会部署到相应的存储库管理器中。在您的构建中不需要 maven-deploy-plugin手动...您的内部工具需要一个带有包装的 pom zip Hm.. 真的没有意义.. 工件可能需要有一个 zip 扩展是好的...但是 pom?

标签: xml eclipse maven tomcat m2e


【解决方案1】:
  1. 禁用“动态网络项目”方面。
  2. 在 web.xml 中将 servlet 版本设置为 3.0:
    <web-app version="3.0" ...
    
  3. 在 pom.xml 中将 servlet 版本设置为 3.0.x(不要忘记“提供”范围):
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.0.1</version>
      <scope>provided</scope>
    </dependency>
    
  4. 重新启用“动态网络项目”方面 3.0。
  5. 按 Alt+F5。

【讨论】:

  • 你是legend。我没有记录那个依赖版本——它是在我的父 pom.xml 中设置的。我正在使用注释,所以我没有 web.xml - 现在我将检查它是否一切正常。
猜你喜欢
  • 2013-08-09
  • 2016-09-05
  • 2018-10-26
  • 2014-03-29
  • 1970-01-01
  • 2013-08-19
  • 1970-01-01
  • 2023-03-26
  • 2015-09-11
相关资源
最近更新 更多