Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 2.1
-
Fix Version/s: None
-
Labels:None
-
Environment:Windows XP Professional Version 5.1.2600 Service Pack 3 Build 2600, Dell OptiPlex GX280, Total Physical Memory 4,096.00 MB
-
Testcase included:yes
-
Number of attachments :
Description
Given the following example:
Bar.java
public class Main { public static void main(String[] args) { for (StackTraceElement stackTraceElement : Thread.currentThread().getStackTrace()) System.out.println(stackTraceElement); } }
and pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.greg</groupId> <artifactId>TestApp</artifactId> <version>1</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <debug>none</debug> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project>
after compiling and running we get:
cmd
{TestApp}\target\classes>dir Main.class
05/02/2010 XX:XX 564 Main.class
{TestApp}\target\classes>java -cp . Main
java.lang.Thread.dumpThreads(Native Method)
java.lang.Thread.getStackTrace(Thread.java:1383)
Main.main(Main.java:3)
NOTE !!!: the number of line (Main.java:3) has been shown
However when you compile the same java code using the javac we get:
cmd
{TestApp}\src\main\java>javac -g:none -source 1.5 -target 1.5 Main.java
{TestApp}\src\main\java>dir Main.class
05/02/2010 XX:XX 477 Main.class
{TestApp}\src\main\java>java -cp . Main
java.lang.Thread.dumpThreads(Native Method)
java.lang.Thread.getStackTrace(Thread.java:1383)
Main.main(Unknown Source)
NOTE !!!: the number of line has not been shown
Please find the whole sample project in Eclipse that uses m2eclipse plugin, that is configured for using external maven 2.2.1
When I compile with -Dmaven.compiler.debug=true I do get a reduction in size however compiled code is still 10-20% larger than that compiled by either ant with debug=false or javac with the '-g:none' option.
Here's a closer look at the same class extracted from jars created with maven and ant using debug-false:
The maven-generated class had three constants not in the ant-generated class:
In addition each method in the class had a LineNumberTable like this:
It seems the only way to get maven to compile without the debugging resources is to add 'g:none' as a compiler argument for javac ... and this doesn't work from the command line – it only works if it is in the configuration element for the maven-compiler-plugin in the pom like this:
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgument>-g:none</compilerArgument> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build>If the compilerArgument to 'g:none' is not set in the pom I can't get any variation of the following command line arguments to compile without some debugging info.
with or without:
with or without any of the following:
But I'd like the default to include debugging resources and to be able to easily optionally package without the debug resources – the easiest way would be able to pass in a command line argument ...