test

test

maven plugin list

http://maven.apache.org/plugins/ http://mojo.codehaus.org/plugins.html http://code.google.com/hosting/search?q=maven%20plugin%20label%3Amaven&filter=0&start=10

Galileo初期設定

[Java]-[Build Path]-[Classpath Variables] に M2_REPO を追加 [Java]-[Appearance]-[Type Filters] に java.awt.* を追加 http://d.hatena.ne.jp/Yamashiro0217/20090322/1237707686 [Java]-[Editor]-[Content Assist] で Complletion overwrites にチェッ…

インストールできなかったもの

Outputz Plugin http://yoshiori.org/project/outputzplugin/update/ MouseFeed http://www.mousefeed.com/ Open External http://update.eclipsegeek.com

galileoのプラグイン

3.5M6M7版限定 Subversive http://download.eclipse.org/releases/galileo http://www.polarion.org/projects/subversive/download/eclipse/2.0/update-site/ Suversion1.5.x系を使っている場合は1.2.2、1.6.x系を使っている場合は1.3を選択 FindBugs http:/…

?

インストール # rpm -ivh http://yum.pgsqlrpms.org/reporpms/8.3/pgdg-centos-8.3-6.noarch.rpm # vim /etc/yum.repos.d/pgdg-83-centos.repo enabled=1 → enabled=0 # yum install --disablerepo=base --enablerepo=pgdg83 postgresql-server postgreユー…

crawlプラグインを使うときの注意

archetype-catalog.xmlに自分のarchetypeを追加してくれるプラグイン。 バグなのか、そのまま実行すると~/.m2/repository/.m2/archetype-catalog.xmlにファイルを作ってしまう。これだarchetype:generateの候補出てこないので以下のように指定して実行する。…

ircサーバの構築

環境 CentOS 5.3 インストール # rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm/etc/yum.repos.d/epel.repoのenabled=1をenabled=0に変更 # yum --enablerepo=epel install ircd-hybrid # mv /etc/ircd/ircd.con…

ViewGitのインストール

git

本家: http://viewgit.sourceforge.net/ 環境 CentOS 5.3 Apache 2.2 インストール 最新版はhttp://sourceforge.net/project/showfiles.php?group_id=232733で確認する。 # wget http://nchc.dl.sourceforge.net/sourceforge/viewgit/viewgit-0.0.4.tar.gz #…

オレオレ証明書をJavaのkeystoreにimportする

on mac $ sudo keytool -import -file ~/Desktop/server.crt -keystore "/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home/lib/security/cacerts" Password: キーストアのパスワードを入力してください: changeit 所有者: EMAILADDRES…

GitリポジトリをWebDAV(+https)経由で公開する

git

色々やったけどこれで出来た。 参考 https://largo.homelinux.org/blog/?q=node/18 環境 サーバ: CentOS 5.3 クライアント: Mac インストール # yum -y instal git-core WebDAVの設定 /mnt/drbd/www/gitをwebdavで公開する htpasswdは/mnt/drbd/www/.htpassw…

drbdのインストール

on centos5.3 参考 http://www.atmarkit.co.jp/flinux/rensai/heartbeat04/heartbeat04b.html http://mojimoji.jp/wiki/index.php?CentOS%2F5.2%2F10.DRBD DRBD用のパーティションの作成 # fdisk /dev/sda このディスクのシリンダ数は 32635 に設定されてい…

VMWare ESXi を USBメモリにインストールする

# mkdir /mnt/misc # mount -o loop VMware-VMvisor-InstallerCD-3.5.0_Update_4-153875.i386.iso /mnt/misc # tar zxvf /mnt/misc/install.tgz # bzip2 -d usr/lib/vmware/installer/VMware-VMvisor-big-3.5.0_Update_4-153875.i386.dd.bz2 # dd if=usr/lib…

Galileoのプラグイン

3.5M6M7版限定 共通 [help]-[Install New Software...]を選択 WTP Work withからhttp://download.eclipse.org/releases/galileoを選択 [Web Developer Tools]を選択 適当に次へ 再起動 Work withからhttp://download.eclipse.org/releases/galileoを選択 [Ja…

Galileoのインストール

3.5M6M7限定 ダウンロード http://download.eclipse.org/eclipse/downloads/ インストール 適当に解凍

mavenのrepositoryの作成

クライアント側 ~/.m2/settings.xml サーバの情報のBasic認証の設定を書く。 <settings> <servers> <server> <id>yamkazu-repository</id> <username>yamkazu</username> <password>xxxxxxx</password> </server> </servers> </settings> pom.xml <distributionManagement> <repository> <uniqueVersion>fa…</uniqueversion></repository></distributionmanagement>

独自の Archetypeの作成

参考 http://maven.apache.org/guides/mini/guide-creating-archetypes.html http://www.techscore.com/tech/ApacheJakarta/Maven/7-2.html#maven-6-16 準備 以下のようなディレクトリ構成にする。 -- pom.xml `-- src `-- main `-- resources |-- META-INF …

Galileoの初期設定変更

3.5M6M7版限定 保存時にフォーマットするように変更 [Eclipse]-[Preference] [Java]-[Editor]-[Save Actions] [Perform the selected actions on save]にチェック [Format source code]にチェック [OK] エディタに行番号を表示 [Eclipse]-[Preference] [Gene…

eclipseにM2REPOの環境変数を追加

mvn -Declipse.workspace=<path-to-eclipse-workspace> eclipse:add-maven-repo</path-to-eclipse-workspace>