passing options to the Java compiler

2004-07-26 Thread Kenneth Simpson
How does pass options to the Java compiler?
In the maven-java-plugin-1.4 directory, there's plugin.properties file with
the following entries
   maven.compile.target = 1.1
   maven.compile.source = 1.3
what do these mean?
-- Ken
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: passing options to the Java compiler

2004-07-26 Thread Dion Gillard
Have you read

http://maven.apache.org/reference/plugins/java/properties.html
?

On Mon, 26 Jul 2004 13:33:47 -0700, Kenneth Simpson
[EMAIL PROTECTED] wrote:
 How does pass options to the Java compiler?
 
 In the maven-java-plugin-1.4 directory, there's plugin.properties file with
 the following entries
 
 maven.compile.target = 1.1
 maven.compile.source = 1.3
 
 what do these mean?
 
 -- Ken
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


-- 
http://www.multitask.com.au/people/dion/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: passing options to the Java compiler

2004-07-26 Thread Kenneth Simpson
From: Dion Gillard [EMAIL PROTECTED]
Have you read

http://maven.apache.org/reference/plugins/java/properties.html
?
No I haven't - thank you very much!
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: passing options to the Java compiler

2004-07-26 Thread Malachi de AElfweald
Same as with javac... from the javac help:
  -source release  Provide source compatibility with specified 
release
  -target release  Generate class files for specific VM version

At 01:33 PM 7/26/2004, you wrote:
How does pass options to the Java compiler?
In the maven-java-plugin-1.4 directory, there's plugin.properties file with
the following entries
   maven.compile.target = 1.1
   maven.compile.source = 1.3
what do these mean?
-- Ken

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]