Merge branch 'master' of ssh://forkalsrud.org/home/gitroot/album
This commit is contained in:
commit
b0b7e7c625
1 changed files with 49 additions and 7 deletions
54
pom.xml
54
pom.xml
|
|
@ -3,7 +3,7 @@
|
|||
<groupId>org.forkalsrud</groupId>
|
||||
<artifactId>album</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<version>0.19-SNAPSHOT</version>
|
||||
<version>0.20-SNAPSHOT</version>
|
||||
<name>Photo Album</name>
|
||||
<url>http://forkalsrud.org:8080/</url>
|
||||
<developers>
|
||||
|
|
@ -27,8 +27,8 @@
|
|||
</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>
|
||||
<developerConnection>scm:git:ssh://forkalsrud.org/home/gitroot/album.git</developerConnection>
|
||||
<connection>scm:git:ssh://forkalsrud.org/home/gitroot/album.git</connection>
|
||||
</scm>
|
||||
<build>
|
||||
<finalName>photo</finalName>
|
||||
|
|
@ -97,6 +97,12 @@
|
|||
<artifactId>velocity-tools</artifactId>
|
||||
<version>2.0-beta3</version>
|
||||
<scope>runtime</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.drewnoakes</groupId>
|
||||
|
|
@ -118,6 +124,7 @@
|
|||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.7</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sleepycat</groupId>
|
||||
|
|
@ -127,9 +134,39 @@
|
|||
<!--
|
||||
<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.springframework</groupId>
|
||||
<artifactId>spring-webmvc</artifactId>
|
||||
<version>3.0.0.RELEASE</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<version>3.0.0.RELEASE</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-orm</artifactId>
|
||||
<version>3.0.0.RELEASE</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-core</artifactId>
|
||||
|
|
@ -150,6 +187,11 @@
|
|||
<artifactId>jul-to-slf4j</artifactId>
|
||||
<version>1.5.10</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>jcl-over-slf4j</artifactId>
|
||||
<version>1.5.10</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<repositories>
|
||||
<repository>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue