We Recommend

Beginning VB.NET Beginning VB.NET
Visual Basic .NET is the latest version of the most widely used programming language in the world, popular with professional developers and complete beginners alike. This book will teach you Visual Basic .NET from first principles. You'll quickly and easily learn how to write Visual Basic .NET code and create attractive windows and forms for the users of your applications.


Posted By

arunpjohny on 02/07/08


Tagged

maven


Versions (?)


Setting plugins properties in maven2


Published in: Other 


URL: http://today.java.net/pub/a/today/2007/03/01/building-web-applications-with-maven-2.html

Setting any property value for a maven plugin in pom.xml.

This configuration is used to set the compilation version to java5


  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.apache.maven.plugins</groupId>
  5. <artifactId>maven-compiler-plugin</artifactId>
  6. <configuration>
  7. <source>1.5</source>
  8. <target>1.5</target>
  9. </configuration>
  10. </plugin>
  11. </plugins>
  12. </build>

Report this snippet 

You need to login to post a comment.