You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by wo...@apache.org on 2010/04/29 18:22:26 UTC

svn commit: r939366 - /portals/applications/sandbox/csre/trunk/pom.xml

Author: woonsan
Date: Thu Apr 29 16:22:26 2010
New Revision: 939366

URL: http://svn.apache.org/viewvc?rev=939366&view=rev
Log: (empty)

Added:
    portals/applications/sandbox/csre/trunk/pom.xml   (with props)

Added: portals/applications/sandbox/csre/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/sandbox/csre/trunk/pom.xml?rev=939366&view=auto
==============================================================================
--- portals/applications/sandbox/csre/trunk/pom.xml (added)
+++ portals/applications/sandbox/csre/trunk/pom.xml Thu Apr 29 16:22:26 2010
@@ -0,0 +1,103 @@
+<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>
+  <groupId>org.apache.portals.applications</groupId>
+  <artifactId>csre</artifactId>
+  <name>csre</name>
+  <version>0.0.1-SNAPSHOT</version>
+  <packaging>war</packaging>
+  
+  <properties>
+    <slf4j.version>1.5.8</slf4j.version>
+    <logback.version>0.9.20</logback.version>
+    <junit.version>4.5</junit.version>
+    <easymock.version>2.4</easymock.version>
+  </properties>
+  
+  <dependencies>
+    
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>${slf4j.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <version>${logback.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit.version}</version>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+      <version>${easymock.version}</version>
+      <scope>test</scope>
+    </dependency>
+    
+  </dependencies>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>maven-jetty-plugin</artifactId>
+        <version>6.1.18</version>
+        <configuration>
+          <scanIntervalSeconds>5</scanIntervalSeconds>
+          <webAppConfig>
+            <contextPath>/csre</contextPath>
+            <tempDirectory>${project.build.directory}/work</tempDirectory>
+          </webAppConfig>
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>8088</port>
+            </connector>
+          </connectors>
+        </configuration>
+        <dependencies>
+          <!-- atomikos dependecies for running jetty:run[-war|-exploded] -->
+          <dependency>
+            <groupId>com.atomikos</groupId>
+            <artifactId>transactions-api</artifactId>
+            <version>3.1.4</version>
+            <scope>runtime</scope>
+          </dependency>
+          <dependency>
+            <groupId>com.atomikos</groupId>
+            <artifactId>transactions-jta</artifactId>
+            <version>3.1.4</version>
+            <scope>runtime</scope>
+          </dependency>
+          <dependency>
+            <groupId>com.atomikos</groupId>
+            <artifactId>transactions</artifactId>
+            <version>3.1.4</version>
+            <scope>runtime</scope>
+          </dependency>
+          <dependency>
+            <groupId>com.atomikos</groupId>
+            <artifactId>atomikos-util</artifactId>
+            <version>3.1.4</version>
+            <scope>runtime</scope>
+          </dependency>
+        </dependencies>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  
+</project>

Propchange: portals/applications/sandbox/csre/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/applications/sandbox/csre/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id