Bill Petheram wrote:

>I am using b5 as of this morning Tuesday.
>
>I want to use pre/post goals. I understand I should name my goal 
>postjava:compile. This does not seem to work. What is the name of the goal I 
>should use?
>
You should use <postGoal name="java:compile">.

>
>In this post compile I want to use rmic. rmic uses its own classpath and I 
>need to add a jar file from the dependency list to that class path. How can I 
>refer to a jar file from the project dependency list?
>  
>
You can add a <dependency> element in the <dependencies> of your project 
file (project.xml).
<dependency>
  <id>rmic</id>
  <version>1.12.23</version>
</dependency>

will get you a "${maven.repo.local}/rmic/jars/rmic-1.12.23.jar" file.

>thanks
>
>bill
>  
>
HTH
St�phane

___________________________________________________________
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran�ais !
Yahoo! Mail : http://fr.mail.yahoo.comm

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

Reply via email to