gpt4 book ai didi

xml - 在项目方面更改版本时,Eclipse Mars 中具有 M2E 不稳定配置的动态 Web 模块

转载 作者:行者123 更新时间:2023-11-28 22:52:04 25 4
gpt4 key购买 nike

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

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

我无法将分面降级为 3.0 . Eclipse 只是说“不能那样做”之类的话。但是我可以取消选择该方面,然后 apply , 然后将其设置为 3.0 .

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

然而,一旦我运行 maven->update project...再次在项目上(例如称为 Foo ),项目方面升级为 3.1并创建一个名为 FooEAR 的新项目使用 EAR 部署程序集中的 war 模块。

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

[更新] 仍然在非 war 项目上获取奇怪的 myprojectEAR 项目。

eclipse 火星 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>

最佳答案

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

关于xml - 在项目方面更改版本时,Eclipse Mars 中具有 M2E 不稳定配置的动态 Web 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37027577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com