まず、Netbeans で Java プロジェクトを作成し、Netbean の Java プロジェクトを Eclipse ケプラーの Maven プロジェクトにインポートしたいと考えています。一度試してみましたが、Eclipse ケプラーでコンパイルするとエラーが発生しました。コンパイルしてから動作します。
質問する
1359 次
1 に答える
2
- Create a new maven project in eclipse, notice that you have an src/main/java/ folder
- Go to your netbeans java project, right-click on 'Source Pakages', click on properties and copy the location of this folder
- Go to your files explorer and paste the location, copy all folders under src/
- return to your maven project in eclipse and paste the folders (actually your java packages) under the src/main/java folder
- if you used jar libraries just add them to dependencies in the pom.xml
于 2013-09-07T06:08:19.583 に答える