Showing posts with label Ubuntu. Show all posts
Showing posts with label Ubuntu. Show all posts

Monday, August 15, 2011

Webspace and container bundle

Yesterday I was installing glassfish on ubuntu10 and accidentally found the link below. Somehow the download site of Sun is exposed to public, maybe it's been like this for a while and I didn't know.


Sun Portal Server Download

Wednesday, August 10, 2011

maven2 encoding settings

Recently I set up a development environment on Ubuntu10 and there was a problem with my maven build. Because most existing source code generated from windows and I had an encoding mapping error when building my project in Ubuntu.

To solve it just simply add a property into root pom file.

<properties>
<project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding>

<project.reporting.outputEncoding>iso-8859-1</project.reporting.outputEncoding>
</properties>

Maven Document