Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2012
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.88 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  5. http://maven.apache.org/maven-v4_0_0.xsd">
  6.  
  7.     <modelVersion>4.0.0</modelVersion>
  8.  
  9.     <groupId>kn</groupId>
  10.     <artifactId>groovy-webperso</artifactId>
  11.     <name>gWebPerso</name>
  12.     <version>0.1</version>
  13.  
  14.     <packaging>war</packaging>
  15.    
  16.     <dependencies>
  17.  
  18.         <dependency>
  19.             <groupId>org.codehaus.gmaven.runtime</groupId>
  20.             <artifactId>gmaven-runtime-2.0</artifactId>
  21.             <version>1.4</version>
  22.         </dependency>
  23.        
  24.         <dependency>
  25.             <groupId>junit</groupId>
  26.             <artifactId>junit</artifactId>
  27.             <version>4.10</version>
  28.             <scope>test</scope>
  29.         </dependency>
  30.     </dependencies>
  31.  
  32.     <build>
  33.         <plugins>
  34.             <plugin>
  35.                 <groupId>org.codehaus.gmaven</groupId>
  36.                 <artifactId>gmaven-plugin</artifactId>
  37.                 <version>1.4</version>
  38.                 <executions>
  39.                     <execution>
  40.                         <goals>
  41.                             <goal>generateStubs</goal>
  42.                             <goal>compile</goal>
  43.                             <goal>generateTestStubs</goal>
  44.                             <goal>testCompile</goal>
  45.                         </goals>
  46.                     </execution>
  47.                 </executions>
  48.             </plugin>
  49.             <plugin>
  50.                 <groupId>org.apache.maven.plugins</groupId>
  51.                 <artifactId>maven-compiler-plugin</artifactId>
  52.                 <version>2.3.2</version>
  53.                 <configuration>
  54.                     <source>1.7</source>
  55.                     <target>1.7</target>
  56.                     <showDeprecation>true</showDeprecation>
  57.                 </configuration>
  58.             </plugin>
  59.             <plugin>
  60.                 <groupId>org.apache.maven.plugins</groupId>
  61.                 <artifactId>maven-war-plugin</artifactId>
  62.                 <version>2.1.1</version>
  63.                 <configuration>
  64.                     <failOnMissingWebXml>false</failOnMissingWebXml>
  65.                 </configuration>
  66.             </plugin>
  67.             <plugin>
  68.                 <groupId>org.apache.maven.plugins</groupId>
  69.                 <artifactId>maven-checkstyle-plugin</artifactId>
  70.                 <version>2.8</version>
  71.                 <configuration>
  72.                     <configLocation>config/sun_checks.xml</configLocation>
  73.                 </configuration>
  74.             </plugin>
  75.         </plugins>
  76.     </build>
  77.  
  78.     <properties>
  79.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  80.         <netbeans.hint.deploy.server.version>gfv3ee6</netbeans.hint.deploy.server.version>
  81.     </properties>
  82.    
  83. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement