私はEclipseが初めてです。
そこで、最新の Eclipse Juno、m2e、および SpringIDE をインストールしました。
上記のソフトウェアの組み合わせで Maven Spring プロジェクトを作成する方法を理解できませんでした。
Eclipse UI が提供する唯一のオプションは、Maven プロジェクトまたは Spring プロジェクトのいずれかです。
Eclipse でMaven /Spring プロジェクトを作成できることは知っていますが、実際には 1 つ持っています。
しかし、それを可能にするために、Spring プロジェクトを作成し、その .project ファイルを手動で編集して、Maven の性質とビルド コマンドを含める必要がありました。
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.springframework.ide.eclipse.core.springnature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
および .project ファイルにビルド パスを含めます。
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
質問:
.project ファイルを変更せずに Eclipse UI からそれを行うにはどうすればよいですか?
UI から Eclipse プロジェクトにネイチャーを追加する方法はありますか?
ありがとう