スキップしてメイン コンテンツに移動

投稿

ラベル(eclipse)が付いた投稿を表示しています

EclipseのGoogle Cloud ToolsがインストールするGoogle Cloud SDKの場所

EclipseのGoogle Cloud ToolsからCloud SDKをインストールするように設定して(Window > Preferences > Google Cloud Toolsから設定できます)、Eclipse上でCloud SDKをアップデートしたところ下記のエラーメッセージが表示されました。 WARNING: There are other instances of Google Cloud tools on your system PATH. Please remove the following to avoid confusion or accidental invocation: C:\Users\ { user名 } \AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\java_dev_appserver.sh C:\Users\ { user名 } \AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\gsutil C:\Users\ { user名 } \AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\java_dev_appserver.cmd C:\Users\ { user名 } \AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\endpointscfg.py C:\Users\ { user名 } \AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\bq.cmd C:\Users\ { user名 } \AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\gcloud.ps1 C:\Users\ { user名 } \AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\docker-credential-gcloud.cmd C:\Users\ { user名 } \AppData\Local\Google\Cloud SDK\g

Eclipseでコードカバレッジのハイライトを削除する方法

Eclipseには便利なコードカバレッジ表示機能が搭載されていますが、コード内に緑、赤、黄の色付けがされて煩く感じるときもあると思います。 1度カバレッジの色付けが出てしまった後に消す方法の紹介です(方法は簡単)。 下記のキャプチャの青いマーカーで示した「Remove All Sessions」のボタンを押せばすべて消えます。

Eclipseでproxy設定

eclipseのplugin updateなどのために、eclipseから外部サイトにアクセスする必要があるかと思います。 ネットワークの設定の関係でproxyを通してアクセスしなければならない場合の、eclipseの設定方法を説明します。 Windows->Preferences->General->Network ConnectionsからActive ProviderでManualを選択 HTTPのProxy Hostにプロキシのホスト、Portにプロキシのポート番号を設定

Eclipse Plugin: Programming Language Support

DLTK (Dynamic Languages Toolkit) should help for developing application in language like Ruby, Python etc. Following screenshot is plugin install windows in my eclipse Indigo.

How to convert java-project to web-project in Eclipse

I faced the problem that I could not convert simple java project to wtp project in eclipse. I asked Dr.Google, then he gave me an answer :). Please see the below article. This is exactly what I wanted to know!! How to convert Java Project to Web Project in Eclipse Quick Tips You should check .project file if your project is not what you expect. eclipse determine the project style by the natures section in the file. You should use Navigator window, if you would like to see the files which starts ".".

Eclipseのプラグインメニューの英語化

私は英語版のeclipseを使っているのですが、インストールしたSubverionやFindBugsのプラグインのメニューやメッセージがデフォルトでは日本語になってしまいました。Google先生で調べたところ、 国際化プログラミングの常識 で答えが見つかりました。 eclipse.ini に以下の2行を追加してlocaleを変更すればよいようです。 -Duser.language=en -Duser.country=US 私の場合はこれでメニューを英語に統一できました。