Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #139 from futures/standalone
Added new artifact to fcrepo-webapp, self-running container
  • Loading branch information
cbeer committed Nov 6, 2013
2 parents fc630d0 + 9857d2a commit e79b15c
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
45 changes: 44 additions & 1 deletion fcrepo-webapp/pom.xml
Expand Up @@ -27,6 +27,8 @@

<build.timestamp>${maven.build.timestamp}</build.timestamp>
<maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format>
<!-- for standalone operation -->
<jetty.version>8.1.13.v20130916</jetty.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -74,6 +76,26 @@
<artifactId>fcrepo-storage-policy</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-deploy</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-spring</artifactId>
Expand Down Expand Up @@ -107,9 +129,31 @@
</includes>
</resource>
</webResources>
<archive>
<index>true</index>
<manifest>
<addClasspath>true</addClasspath>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.simplericity.jettyconsole</groupId>
<artifactId>jetty-console-maven-plugin</artifactId>
<version>1.52</version>
<executions>
<execution>
<goals>
<goal>createconsole</goal>
</goals>
<configuration>
<backgroundImage>${basedir}/src/main/jettyconsole/fedora_logo_10in.png</backgroundImage>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<systemPropertyVariables>
Expand Down Expand Up @@ -224,7 +268,6 @@
<shortRevisionLength>8</shortRevisionLength>
</configuration>
</plugin>

</plugins>
</build>

Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e79b15c

Please sign in to comment.