Search Java Code Snippets


  Help us in improving the repository. Add new snippets through 'Submit Code Snippet ' link.





Java - Code Samples

 Sample 1. Maven Pom File Template

<project>
<parent>
<groupId></groupId>
<artifactId></artifactId>
<version></version>
</parent>

<modelVersion></modelVersion>

<artifactId></artifactId>
<packaging></packaging>

<name></name>
<url></url>

<properties>
</properties>

<dependencies>
<dependency>
<groupId></groupId>
<artifactId></artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
   <directory></directory>
   <filtering></filtering>
</resource>
</resources>
<plugins>
<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
   <artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

   Like      Feedback     maven  pom file  sample pom file



Subscribe to Java News and Posts. Get latest updates and posts on Java from Buggybread.com
Enter your email address:
Delivered by FeedBurner