rails-integration
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jruby.extras</groupId> <artifactId>rails-integration</artifactId> <version>1.1.1</version> </dependency>
<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.jruby.extras</groupId> <artifactId>rails-integration</artifactId> <packaging>jar</packaging> <version>1.1.1</version> <name>Rails Integration</name> <description>Rails-Integration allows you to deploy your standard Rails web application to a J2EE server. You can package up your application as a WAR file for distribution, or simply run it in an expanded form.</description> <url>http://rubyforge.org/projects/jruby-extras</url> <scm> <connection>scm:svn:svn://rubyforge.org/var/svn/jruby-extras/trunk/rails-integration</connection> <developerConnection>scm:svn:svn+ssh://rubyforge.org/var/svn/jruby-extras/trunk/rails-integration</developerConnection> </scm> <licenses> <license> <name>MIT</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <repository> <id>codehaus-jruby-repository</id> <name>JRuby Central Repository</name> <url>dav:https://dav.codehaus.org/repository/jruby</url> </repository> <snapshotRepository> <id>codehaus-jruby-snapshot-repository</id> <name>JRuby Central Development Repository</name> <url>dav:https://dav.codehaus.org/snapshots.repository/jruby</url> </snapshotRepository> <site> <id>codehaus-jruby-site</id> <name>JRuby Maven site</name> <url>dav:https://dav.codehaus.org/jruby/info</url> </site> </distributionManagement> <dependencies> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-complete</artifactId> <version>0.9.9</version> </dependency> <dependency> <groupId>bouncycastle</groupId> <artifactId>bcprov-jdk14</artifactId> <version>124</version> </dependency> <dependency> <groupId>commons-pool</groupId> <artifactId>commons-pool</artifactId> <version>1.3</version> </dependency> <!-- This is needed by FileServlet to determine MIME types --> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.3</version> <!-- scope should be provided & test, however since only one is allowed, use compile + optional instead --> <scope>compile</scope> <optional>true</optional> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> <!-- Tomcat testing --> <dependency> <groupId>tomcat</groupId> <artifactId>bootstrap</artifactId> <version>4.1.34</version> <scope>test</scope> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>catalina</artifactId> <version>4.1.34</version> <scope>test</scope> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>naming-resources</artifactId> <version>4.1.34</version> <scope>test</scope> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>naming-common</artifactId> <version>4.1.34</version> <scope>test</scope> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>naming-factory</artifactId> <version>4.1.34</version> <scope>test</scope> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>tomcat-coyote</artifactId> <version>4.1.34</version> <scope>test</scope> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>tomcat4-coyote</artifactId> <version>4.1.34</version> <scope>test</scope> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>tomcat-http11</artifactId> <version>4.1.34</version> <scope>test</scope> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>tomcat-util</artifactId> <version>4.1.34</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>1.8</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-modeler</groupId> <artifactId>commons-modeler</artifactId> <version>1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>jakarta-regexp</groupId> <artifactId>jakarta-regexp</artifactId> <version>1.4</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${basedir}/src/main/ruby</directory> </resource> </resources> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> </extension> </extensions> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.4</source> <target>1.4</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> <argLine>-Xmx256m</argLine> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <tagBase>svn://rubyforge.org/var/svn/jruby-extras/tags/rails-integration</tagBase> </configuration> </plugin> </plugins> </build> </project>