Advertisement
ArranUbels

Working MFD Google app engine POM

Apr 21st, 2013
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.71 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>name.mfd.melfridinbot</groupId>
  8.     <artifactId>melfridinbot</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <properties>
  11.         <appengine.app.version>1</appengine.app.version>
  12.         <appengine.target.version>1.7.7</appengine.target.version>
  13.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14.     </properties>
  15.  
  16.  
  17.     <dependencies>
  18.         <dependency>
  19.             <groupId>org.apache.commons</groupId>
  20.             <artifactId>commons-lang3</artifactId>
  21.             <version>3.1</version>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>junit</groupId>
  25.             <artifactId>junit</artifactId>
  26.             <version>4.8.1</version>
  27.             <scope>test</scope>
  28.         </dependency>
  29.         <dependency>
  30.             <groupId>commons-lang</groupId>
  31.             <artifactId>commons-lang</artifactId>
  32.             <version>2.6</version>
  33.         </dependency>
  34.         <dependency>
  35.             <groupId>commons-collections</groupId>
  36.             <artifactId>commons-collections</artifactId>
  37.             <version>3.2.1</version>
  38.         </dependency>
  39.         <dependency>
  40.             <groupId>commons-codec</groupId>
  41.             <artifactId>commons-codec</artifactId>
  42.             <version>1.7</version>
  43.         </dependency>
  44.         <!--<dependency>-->
  45.             <!--<groupId>joda-time</groupId>-->
  46.             <!--<artifactId>joda-time</artifactId>-->
  47.             <!--<version>2.1</version>-->
  48.         <!--</dependency>-->
  49.         <dependency>
  50.             <groupId>com.sun.jersey</groupId>
  51.             <artifactId>jersey-server</artifactId>
  52.             <version>1.9.1</version>
  53.         </dependency>
  54.         <dependency>
  55.             <groupId>com.sun.jersey</groupId>
  56.             <artifactId>jersey-json</artifactId>
  57.             <version>1.9.1</version>
  58.         </dependency>
  59.  
  60.         <dependency>
  61.             <groupId>com.google.appengine</groupId>
  62.             <artifactId>appengine-api-1.0-sdk</artifactId>
  63.             <version>${appengine.target.version}</version>
  64.         </dependency>
  65.         <dependency>
  66.             <groupId>javax.servlet</groupId>
  67.             <artifactId>servlet-api</artifactId>
  68.             <version>2.5</version>
  69.             <!--<scope>provided</scope>-->
  70.         </dependency>
  71.         <dependency>
  72.             <groupId>org.mockito</groupId>
  73.             <artifactId>mockito-all</artifactId>
  74.             <version>1.9.0</version>
  75.             <scope>test</scope>
  76.         </dependency>
  77.         <dependency>
  78.             <groupId>com.google.appengine</groupId>
  79.             <artifactId>appengine-testing</artifactId>
  80.             <version>${appengine.target.version}</version>
  81.             <scope>test</scope>
  82.         </dependency>
  83.         <dependency>
  84.             <groupId>com.google.appengine</groupId>
  85.             <artifactId>appengine-api-stubs</artifactId>
  86.             <version>${appengine.target.version}</version>
  87.             <scope>test</scope>
  88.         </dependency>
  89.  
  90.     </dependencies>
  91.  
  92.     <build>
  93.         <plugins>
  94.             <plugin>
  95.                 <groupId>org.apache.maven.plugins</groupId>
  96.                 <version>2.5.1</version>
  97.                 <artifactId>maven-compiler-plugin</artifactId>
  98.                 <configuration>
  99.                     <source>1.6</source>
  100.                     <target>1.6</target>
  101.                 </configuration>
  102.             </plugin>
  103.             <plugin>
  104.                 <groupId>org.apache.maven.plugins</groupId>
  105.                 <artifactId>maven-war-plugin</artifactId>
  106.                 <version>2.3</version>
  107.                 <configuration>
  108.                     <archiveClasses>true</archiveClasses>
  109.                     <webResources>
  110.                         <!-- in order to interpolate version from pom into appengine-web.xml -->
  111.                         <resource>
  112.                             <directory>${basedir}/src/main/webapp/WEB-INF</directory>
  113.                             <filtering>true</filtering>
  114.                             <targetPath>WEB-INF</targetPath>
  115.                         </resource>
  116.                     </webResources>
  117.                 </configuration>
  118.             </plugin>
  119.             <plugin>
  120.                 <groupId>com.google.appengine</groupId>
  121.                 <artifactId>appengine-maven-plugin</artifactId>
  122.                 <version>${appengine.target.version}</version>
  123.             </plugin>
  124.         </plugins>
  125.     </build>
  126.  
  127. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement