2011-01-02から1日間の記事一覧

Maven2でhttpとhttps両方でプロキシを使う

Maven2ではリポジトリへのアクセスにプロキシを通す必要がある場合、/.m2/settings.xmlで以下のような感じで設定します。 <settings> <proxies> <proxy> <active>true</active> <protocol>http</protocol> <host>proxy.somewhere.com</host> <port>8080</port> <username>proxyuser</username> <password>somepassword</password> <nonProxyHosts>www.google.com|*.somewh…</nonproxyhosts></proxy></proxies></settings>

Mirage 1.0.6をリリースしました

S2JDBCの2WaySQLが利用可能なデータベースアクセスライブラリ、Mirage 1.0.6をリリースしました。 http://amateras.sourceforge.jp/site/mirage/welcome.html 今回の修正点、新機能は以下の通りです。 ユニットテスト支援機能 ユニットテスト時にDBなしでSql…