Advertisement
Guest User

pom.xml

a guest
Sep 24th, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.30 KB | None | 0 0
  1. <?xml version="1.0"?>
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <groupId>com.xxx.web.weblib</groupId>
  6.     <artifactId>weblib-search-portlet-lr62</artifactId>
  7.     <packaging>war</packaging>
  8.     <name>weblib-search-portlet-lr62 Portlet</name>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <build>
  11.         <plugins>
  12.             <plugin>
  13.                 <groupId>com.liferay.maven.plugins</groupId>
  14.                 <artifactId>liferay-maven-plugin</artifactId>
  15.                 <version>${liferay.maven.plugin.version}</version>
  16.                 <configuration>
  17.                     <autoDeployDir>${liferay.auto.deploy.dir}</autoDeployDir>
  18.                     <appServerDeployDir>${liferay.app.server.deploy.dir}</appServerDeployDir>
  19.                     <appServerLibGlobalDir>${liferay.app.server.lib.global.dir}</appServerLibGlobalDir>
  20.                     <appServerPortalDir>${liferay.app.server.portal.dir}</appServerPortalDir>
  21.                     <liferayVersion>${liferay.version}</liferayVersion>
  22.                     <pluginType>portlet</pluginType>
  23.                 </configuration>
  24.             </plugin>
  25.             <plugin>
  26.                 <artifactId>maven-compiler-plugin</artifactId>
  27.                 <version>2.5</version>
  28.                 <configuration>
  29.                     <encoding>UTF-8</encoding>
  30.                     <source>1.7</source>
  31.                     <target>1.7</target>
  32.                 </configuration>
  33.             </plugin>
  34.             <plugin>
  35.                 <artifactId>maven-resources-plugin</artifactId>
  36.                 <version>2.5</version>
  37.                 <configuration>
  38.                     <encoding>UTF-8</encoding>
  39.                 </configuration>
  40.             </plugin>
  41.         </plugins>
  42.     </build>
  43.     <properties>
  44.         <liferay.version>6.2.0-B3</liferay.version>
  45.         <liferay.maven.plugin.version>${liferay.version}</liferay.maven.plugin.version>
  46.         <liferay.faces.version>3.1.2-ga3</liferay.faces.version>
  47.         <sun.jsf-api.version>2.2.3</sun.jsf-api.version>
  48.         <icefaces.version>3.3.0</icefaces.version>
  49.         <cdi-api.version>1.1-PRD</cdi-api.version>
  50.         <cdi-portlet-birdge.version>6.2.0.1</cdi-portlet-birdge.version>
  51.     </properties>
  52.     <dependencies>
  53.         <dependency>
  54.             <groupId>com.liferay.faces</groupId>
  55.             <artifactId>liferay-faces-bridge-impl</artifactId>
  56.             <version>${liferay.faces.version}</version>
  57.         </dependency>
  58.         <dependency>
  59.             <groupId>com.liferay.faces</groupId>
  60.             <artifactId>liferay-faces-portal</artifactId>
  61.             <version>${liferay.faces.version}</version>
  62.         </dependency>
  63.         <dependency>
  64.             <groupId>com.liferay.portal</groupId>
  65.             <artifactId>portal-service</artifactId>
  66.             <version>${liferay.version}</version>
  67.             <scope>provided</scope>
  68.         </dependency>
  69.         <dependency>
  70.             <groupId>com.liferay.portal</groupId>
  71.             <artifactId>util-java</artifactId>
  72.             <version>${liferay.version}</version>
  73.             <scope>provided</scope>
  74.         </dependency>
  75.         <dependency>
  76.             <groupId>com.sun.faces</groupId>
  77.             <artifactId>jsf-api</artifactId>
  78.             <version>${sun.jsf-api.version}</version>
  79.             <scope>provided</scope>
  80.  
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>com.sun.faces</groupId>
  84.             <artifactId>jsf-impl</artifactId>
  85.             <version>${sun.jsf-api.version}</version>
  86.             <scope>provided</scope>
  87.         </dependency>
  88.         <dependency>
  89.             <groupId>javax.el</groupId>
  90.             <artifactId>el-api</artifactId>
  91.             <version>1.0</version>
  92.             <scope>provided</scope>
  93.         </dependency>
  94.         <dependency>
  95.             <groupId>javax.portlet</groupId>
  96.             <artifactId>portlet-api</artifactId>
  97.             <version>2.0</version>
  98.             <scope>provided</scope>
  99.         </dependency>
  100.         <dependency>
  101.             <groupId>org.jboss.seam</groupId>
  102.             <artifactId>jboss-el</artifactId>
  103.             <version>2.0.0.GA</version>
  104.             <exclusions>
  105.                 <exclusion>
  106.                     <artifactId>el-api</artifactId>
  107.                     <groupId>javax.el</groupId>
  108.                 </exclusion>
  109.             </exclusions>
  110.         </dependency>
  111.         <dependency>
  112.             <groupId>org.icefaces</groupId>
  113.             <artifactId>icefaces</artifactId>
  114.             <version>${icefaces.version}</version>
  115.             <exclusions>
  116.                 <exclusion>
  117.                     <artifactId>javax.faces</artifactId>
  118.                     <groupId>org.glassfish</groupId>
  119.                 </exclusion>
  120.             </exclusions>
  121.         </dependency>
  122.         <dependency>
  123.             <groupId>org.icefaces</groupId>
  124.             <artifactId>icefaces-ace</artifactId>
  125.             <version>${icefaces.version}</version>
  126.         </dependency>
  127.         <dependency>
  128.             <groupId>javax.enterprise</groupId>
  129.             <artifactId>cdi-api</artifactId>
  130.             <version>${cdi-api.version}</version>
  131.         </dependency>
  132.         <dependency>
  133.             <groupId>org.apache.commons</groupId>
  134.             <artifactId>commons-lang3</artifactId>
  135.             <version>3.1</version>
  136.         </dependency>
  137.  
  138.         <dependency>
  139.             <groupId>com.liferay.cdi</groupId>
  140.             <artifactId>cdi-portlet-bridge-shared</artifactId>
  141.             <version>${cdi-portlet-birdge.version}</version>
  142.         </dependency>
  143.     </dependencies>
  144.     <repositories>
  145.         <repository>
  146.             <id>repo1.maven.org</id>
  147.             <name>maven central</name>
  148.             <url>http://repo1.maven.org/maven2/</url>
  149.         </repository>
  150.         <repository>
  151.             <id>maven2-repository.dev.java.net</id>
  152.             <name>Java.net Repository for Maven</name>
  153.             <url>http://download.java.net/maven/2/</url>
  154.         </repository>
  155.         <repository>
  156.             <id>maven2-repository.jboss.org</id>
  157.             <name>JBoss Maven Repository</name>
  158.             <url>http://repository.jboss.org/nexus/content/groups/public-jboss</url>
  159.         </repository>
  160.         <repository>
  161.             <id>public.maven2-repository.jboss.org</id>
  162.             <name>JBoss Public Maven Repository</name>
  163.             <url>https://repository.jboss.org/nexus/content/groups/public/</url>
  164.         </repository>
  165.     </repositories>
  166. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement