Mercurial > dive4elements > gnv-client
view gnv/pom.xml @ 151:30f0af26b086
Catch Exception that the Calling Program could not put no InputData
into the feed Request.issue56
gnv/trunk@245 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 19 Oct 2009 12:49:58 +0000 |
parents | 134de54acc2f |
children | b98a6d175916 |
line wrap: on
line source
<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>de.intevation.bsh</groupId> <artifactId>gnv</artifactId> <packaging>war</packaging> <version>1.0-SNAPSHOT</version> <name>gnv</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.restlet</groupId> <artifactId>org.restlet</artifactId> <version>2.0-M3</version> </dependency> <dependency> <groupId>org.restlet</groupId> <artifactId>org.restlet.ext.xml</artifactId> <version>2.0-M3</version> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>servlet-api</artifactId> <version>5.5.15</version> <scope>provided</scope> </dependency> <dependency> <groupId>struts</groupId> <artifactId>struts-el</artifactId> <version>1.2.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>struts</groupId> <artifactId>struts</artifactId> <version>1.2.9</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>[1.2,)</version> </dependency> </dependencies> <build> <finalName>gnv</finalName> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <directory>${basedir}/src/main/webapp</directory> <excludes> <exclude>images/</exclude> <exclude>WEB-INF/jsp/application/</exclude> </excludes> </resource> </webResources> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <configuration> <archive> <manifest> <mainClass>de.intevation.artifactdatabase.App</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.1</version> <configuration> <executable>java</executable> <arguments> <argument>-classpath</argument> <classpath/> <argument>de.intevation.artifactdatabase.App</argument> </arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <m2eclipse>true</m2eclipse> <downloadSources>true</downloadSources> <wtpversion>1.5</wtpversion> <additionalProjectFacets> <jst.web.xdoclet>1.2.3</jst.web.xdoclet> </additionalProjectFacets> </configuration> </plugin> </plugins> </build> </project>