album/pom.xml

155 lines
5.9 KiB
XML
Raw Normal View History

2008-12-08 00:57:59 +00:00
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.forkalsrud</groupId>
<artifactId>album</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>Photo Album</name>
<url>http://forkalsrud.org</url>
2009-01-11 22:23:07 -08:00
<developers>
<developer>
<name>Knut Forkalsrud</name>
<id>knut</id>
<email>knut@forkalsrud.org</email>
<url>http://www.forkalsrud.org/~knut/</url>
<timezone>PST</timezone>
</developer>
<developer>
<name>Erik Forkalsrud</name>
<id>erik</id>
<email>erik@forkalsrud.org</email>
<url>http://www.forkalsrud.org/~erik/</url>
<timezone>PST</timezone>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2008-12-08 00:57:59 +00:00
<build>
<finalName>photo</finalName>
2008-12-08 00:57:59 +00:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.14</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<wtpversion>1.5</wtpversion>
<wtpContextName>photo</wtpContextName>
2008-12-08 00:57:59 +00:00
<wtpdefaultserver>J2EE Preview</wtpdefaultserver>
<additionalProjectnatures>
<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
<projectnature>org.eclipse.wst.common.project.facet.core.nature</projectnature>
<projectnature>org.eclipse.wst.common.modulecore.ModuleCoreNature</projectnature>
<projectnature>org.eclipse.jem.workbench.JavaEMFNature</projectnature>
<projectnature>org.eclipse.wst.jsdt.core.jsNature</projectnature>
</additionalProjectnatures>
<additionalBuildcommands>
<buildCommand><name>org.springframework.ide.eclipse.core.springbuilder</name></buildCommand>
<buildCommand><name>org.eclipse.wst.jsdt.core.javascriptValidator</name></buildCommand>
<buildCommand><name>org.eclipse.wst.common.project.facet.core.builder</name></buildCommand>
<buildCommand><name>org.eclipse.wst.validation.validationbuilder</name></buildCommand>
</additionalBuildcommands>
<additionalProjectFacets>
<jst.java>5.0</jst.java>
<jst.web>2.5</jst.web>
<wst.jsdt.web>1.0</wst.jsdt.web>
</additionalProjectFacets>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
2009-01-11 23:08:31 -08:00
<groupId>org.apache.velocity</groupId>
2008-12-08 00:57:59 +00:00
<artifactId>velocity</artifactId>
2009-01-11 23:08:31 -08:00
<version>1.6.1</version>
<scope>runtime</scope>
2008-12-08 00:57:59 +00:00
</dependency>
<dependency>
2009-01-11 23:08:31 -08:00
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-tools</artifactId>
<version>2.0-beta3</version>
<scope>runtime</scope>
2008-12-08 00:57:59 +00:00
</dependency>
<dependency>
<groupId>com.drewnoakes</groupId>
2008-12-08 00:57:59 +00:00
<artifactId>metadata-extractor</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
2009-01-24 13:48:14 -08:00
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
</dependency>
2010-02-05 21:16:10 -08:00
<dependency>
<groupId>com.sleepycat</groupId>
<artifactId>je</artifactId>
<version>4.0.92</version>
</dependency>
<!--
<dependency><groupId>com.caucho</groupId><artifactId>resin</artifactId><version>3.1.8</version></dependency>
<dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>3.0.0.RELEASE</version></dependency>
<dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>3.0.0.RELEASE</version></dependency>
<dependency><groupId>org.springframework</groupId><artifactId>spring-orm</artifactId><version>3.0.0.RELEASE</version></dependency>
-->
2008-12-08 00:57:59 +00:00
</dependencies>
<repositories>
<repository>
<id>central</id>
2008-12-08 00:57:59 +00:00
<name>forkalsrud.org maven proxy</name>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
<url>http://forkalsrud.org:8080/nexus/content/groups/public</url>
2008-12-08 00:57:59 +00:00
</repository>
2010-02-05 21:16:10 -08:00
<repository>
<id>snapshots</id>
<name>forkalsrud.org maven proxy</name>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
<url>http://forkalsrud.org:8080/nexus/content/groups/public-snapshots</url>
2008-12-08 00:57:59 +00:00
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>forkalsrud.org maven proxy</name>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
<url>http://forkalsrud.org:8080/nexus/content/groups/public</url>
</pluginRepository>
<pluginRepository>
<id>snapshots</id>
<name>forkalsrud.org maven proxy</name>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
<url>http://forkalsrud.org:8080/nexus/content/groups/public-snapshots</url>
</pluginRepository>
</pluginRepositories>
2008-12-08 00:57:59 +00:00
</project>