Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Introduced webapp
  • Loading branch information
ajs6f committed Feb 7, 2013
1 parent 1abe701 commit 16c7750
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 26 deletions.
14 changes: 1 addition & 13 deletions kernel/pom.xml
Expand Up @@ -296,19 +296,7 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.9.v20130131</version>
<configuration>
<scanIntervalSeconds>2</scanIntervalSeconds>
<webApp>
<contextPath>/</contextPath>
</webApp>
<stopKey>stop</stopKey>
<stopPort>9999</stopPort>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.enunciate</groupId>
<artifactId>maven-enunciate-cxf-plugin</artifactId>
Expand Down
13 changes: 0 additions & 13 deletions kernel/src/main/webapp/index.jsp

This file was deleted.

7 changes: 7 additions & 0 deletions pom.xml
Expand Up @@ -22,6 +22,7 @@
<modules>
<module>kernel</module>
<module>audit</module>
<module>webapp</module>
</modules>


Expand All @@ -47,6 +48,12 @@
<version>${fcrepo.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.fcrepo.modeshape</groupId>
<artifactId>audit</artifactId>
<version>${fcrepo.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.jcr</groupId>
<artifactId>jcr</artifactId>
Expand Down
44 changes: 44 additions & 0 deletions webapp/pom.xml
@@ -0,0 +1,44 @@
<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>
<parent>
<groupId>org.fcrepo.modeshape</groupId>
<artifactId>modeshape-prototype</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>webapp</artifactId>
<packaging>war</packaging>
<name>fcrepo ModeShape prototype webapp</name>

<dependencies>
<dependency>
<groupId>org.fcrepo.modeshape</groupId>
<artifactId>kernel</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.fcrepo.modeshape</groupId>
<artifactId>audit</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.9.v20130131</version>
<configuration>
<scanIntervalSeconds>2</scanIntervalSeconds>
<webApp>
<contextPath>/</contextPath>
</webApp>
<stopKey>stop</stopKey>
<stopPort>9999</stopPort>
</configuration>
</plugin>
</plugins>
</build>
</project>
File renamed without changes.

0 comments on commit 16c7750

Please sign in to comment.