Author: desruisseaux Date: Tue Sep 11 09:37:01 2012 New Revision: 1383323 URL: http://svn.apache.org/viewvc?rev=1383323&view=rev Log: Exclude debugging information (except filenames and line numbers) and optimized when the "apache-release" profil is enabled.
Modified: incubator/sis/trunk/pom.xml Modified: incubator/sis/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/sis/trunk/pom.xml?rev=1383323&r1=1383322&r2=1383323&view=diff ============================================================================== --- incubator/sis/trunk/pom.xml (original) +++ incubator/sis/trunk/pom.xml Tue Sep 11 09:37:01 2012 @@ -275,6 +275,16 @@ Apache SIS is a toolkit for describing l <website.locale>en</website.locale> </properties> + <profiles> + <profile> + <id>apache-release</id> + <properties> + <maven.compiler.debug>false</maven.compiler.debug> + <maven.compiler.optimize>true</maven.compiler.optimize> + </properties> + </profile> + </profiles> + <!-- ==============================================================