我正在使用Eclipse Indigo。我在eclipse上安装了maven包。我配置了Pom,几乎一切都很好。只是maven没有构建默认文件夹浴缸
的src /主/ JAVA
这是pom。
<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>TestProject</groupId>
<artifactId>TestProject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.6</version>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<version>2.0.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.6</version>
<configuration>
<ajdtVersion>1.6</ajdtVersion>
</configuration>
</plugin>
</plugins>
</build>
</project>
我清理了项目,安装并构建它....我也升级了项目......依赖项都很好......没有错误...为什么不是文件夹构建?
答案 0 :(得分:1)
Eclipse与maven的集成(至少可以说)令人震惊。如果你想创建一个新项目:创建pom和文件夹,然后运行mvn eclipse:eclipse为eclipse创建项目文件。我所遵循的简单解决方案是使用community edition of Intellij。
解决你的第二个问题:好吧......再次,整合是如此糟糕,有时你需要关闭并重新打开eclipse的项目来阅读新的变化。大多数情况下,刷新+清理项目将强制eclipse读取项目配置。