Fight the Future

Java言語とJVM、そしてJavaエコシステム全般にまつわること

2010-05-11から1日間の記事一覧

MavenのTips

settings.xmlで個人設定をする。-DdownloadSources=trueを常に追加するようにしたければ要素に追加する。 <settings> <profiles> <profile> <id>xxx</id> <properties> <downloadSources>true</downloadSources> </properties> </profile> </profiles> <activeProfiles> <activeProfile>xxx</activeProfile> </activeProfiles> </settings> pom.xmlに記述すると個人で…

MacPortsでMySQLをインストールおさらい。

MacPortsで入れたかったから。 MacPortsがない人はまずインストールしてパスに追加する。マンパスも。 $ vi .bash_profile export PATH=opt/local/bin:/opt/local/sbin:$PATH export MANPATH=/opt/local/man:$MANPATH$ sudo port install mysql5 The MySQL c…