liferay-user-associations-core-bc-module-portlet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.vgregion.liferay-user-associations</groupId> <artifactId>liferay-user-associations-core-bc-module-portlet</artifactId> <version>1.0</version> </dependency>
<?xml version="1.0"?> <!-- This is the Web-app Maven POM. Template version: 1.4 Generation time : 2011-06-14 13:13:30 CEST --> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>se.vgregion.liferay-user-associations</groupId> <artifactId>liferay-user-associations-core-bc</artifactId> <version>1.0</version> </parent> <groupId>se.vgregion.liferay-user-associations</groupId> <artifactId>liferay-user-associations-core-bc-module-portlet</artifactId> <packaging>war</packaging> <name>${project.artifactId}</name> <build> <finalName>liferay-user-associations</finalName> <plugins> <plugin> <!-- Configure eclipse plug-in to generate a context root that does not have the version number on it --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <wtpContextName>${project.artifactId}</wtpContextName> </configuration> </plugin> <plugin> <groupId>org.zeroturnaround</groupId> <artifactId>jrebel-maven-plugin</artifactId> <version>1.0.7</version> <executions> <execution> <id>generate-rebel-xml</id> <phase>process-resources</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>javax.portlet</groupId> <artifactId>portlet-api</artifactId> </dependency> <dependency> <groupId>com.sun.portal</groupId> <artifactId>portlet-container</artifactId> </dependency> <dependency> <groupId>se.vgregion.javg</groupId> <artifactId>javg-rt-support</artifactId> <version>${javg.version}</version> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <!-- We use a Servlet Filter from spring-web to control UTF-8 encodings. Facelets doesn't do this for us. --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <dependency> <!-- required by the Spring-JS resource-loading servlet --> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc-portlet</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </dependency> <dependency> <groupId>com.liferay.portal</groupId> <artifactId>portal-service</artifactId> <version>${liferay.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.liferay.portal</groupId> <artifactId>portal-impl</artifactId> <version>${liferay.version}</version> <!--<classifier>ee</classifier>--> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> </dependency> <!--<dependency>--> <!--<groupId>org.powermock</groupId>--> <!--<artifactId>powermock-api-mockito</artifactId>--> <!--<version>1.4.8</version>--> <!--</dependency>--> <dependency> <groupId>javax.portlet</groupId> <artifactId>portlet-api</artifactId> <!--<scope>test</scope>--> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>se.vgregion.test-utils</groupId> <artifactId>test-utils-bc-core-composite-svc</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>prod</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <directory>src/main/webapp/WEB-INF/prod</directory> <targetPath>WEB-INF</targetPath> </resource> </webResources> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>