pom.xml revision 4f2be58ed1e83875854cf4c7258af8079344d26a
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>org.opensolaris.opengrok</groupId>
<artifactId>opengrok-web</artifactId>
<packaging>war</packaging>
<version>0.13-SNAPSHOT</version>
<name>OpenGrok Web</name>
<parent>
<groupId>org.opensolaris.opengrok</groupId>
<artifactId>opengrok</artifactId>
<version>0.13-SNAPSHOT</version>
</parent>
<build>
<!-- Unstandard paths inherited by old directory structure -->
<sourceDirectory>/web</sourceDirectory>
<finalName>source</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<webXml>/web/WEB-INF/web.xml</webXml>
<warSourceDirectory>/web</warSourceDirectory>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>opengrok-indexer</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>