185 lines
7.1 KiB
XML
185 lines
7.1 KiB
XML
<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>0.14-SNAPSHOT</version>
|
|
<name>Photo Album</name>
|
|
<url>http://forkalsrud.org:8080/</url>
|
|
<developers>
|
|
<developer>
|
|
<name>Knut Forkalsrud</name>
|
|
<id>knut</id>
|
|
<email>knut@forkalsrud.org</email>
|
|
<url>http://forkalsrud.org:8080/~knut/</url>
|
|
<timezone>PST</timezone>
|
|
</developer>
|
|
<developer>
|
|
<name>Erik Forkalsrud</name>
|
|
<id>erik</id>
|
|
<email>erik@forkalsrud.org</email>
|
|
<url>http://forkalsrud.org:8080/~erik/</url>
|
|
<timezone>PST</timezone>
|
|
</developer>
|
|
</developers>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<scm>
|
|
<url>forkalsrud.org</url>
|
|
<developerConnection>scm:git:ssh://forkalsrud.org/home/gitroot/album</developerConnection>
|
|
<connection>scm:git:ssh://forkalsrud.org/home/gitroot/album</connection>
|
|
</scm>
|
|
<build>
|
|
<finalName>photo</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</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>
|
|
<wtpdefaultserver>J2EE Preview</wtpdefaultserver>
|
|
<additionalProjectnatures>
|
|
<projectnature>org.maven.ide.eclipse.maven2Nature</projectnature>
|
|
<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>
|
|
<!--
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<repositoryId>central</repositoryId>
|
|
</configuration>
|
|
</plugin>
|
|
-->
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity</artifactId>
|
|
<version>1.6.1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-tools</artifactId>
|
|
<version>2.0-beta3</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.drewnoakes</groupId>
|
|
<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>
|
|
<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>
|
|
<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>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-core</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<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>
|
|
</repository>
|
|
<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>
|
|
</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>
|
|
<distributionManagement>
|
|
<!-- use the following if you're not using a snapshot version. -->
|
|
<repository>
|
|
<id>repo</id>
|
|
<name>Forkalsrud.org's Maven Repository</name>
|
|
<url>http://forkalsrud.org:8080/nexus/content/repositories/releases</url>
|
|
</repository>
|
|
<!-- use the following if you ARE using a snapshot version. -->
|
|
<snapshotRepository>
|
|
<id>repo</id>
|
|
<name>Forkalsrud.org's Maven Snapshot Repository</name>
|
|
<url>http://forkalsrud.org:8080/nexus/content/repositories/snapshots</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
</project>
|