Skip to content

Instantly share code, notes, and snippets.

@robi42
Created March 23, 2010 10:07
Show Gist options
  • Save robi42/341014 to your computer and use it in GitHub Desktop.
Save robi42/341014 to your computer and use it in GitHub Desktop.
<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.ringojs</groupId>
<artifactId>ringojs</artifactId>
<packaging>jar</packaging>
<version>0.5.0-SNAPSHOT</version>
<name>RingoJS</name>
<url>http://ringojs.org/</url>
<developers>
<developer>
<name>Hannes Wallnöfer</name>
<id>hns</id>
<email>[email protected]</email>
<url>http://henso.com/</url>
<timezone>+1</timezone>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<directory>build</directory>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>src/org/ringojs/test</testSourceDirectory>
<resources>
<resource>
<directory>modules</directory>
<targetPath>modules</targetPath>
</resource>
</resources>
<finalName>../lib/ringo</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<optimize>true</optimize>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
<version>1.7R3-patch</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.22</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.11</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.11</version>
</dependency>
<dependency>
<groupId>org.jruby.ext.posix</groupId>
<artifactId>jnr-posix</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>org.jruby.extras</groupId>
<artifactId>jaffl</artifactId>
<version>0.5.2</version>
</dependency>
<dependency>
<groupId>org.jruby.extras</groupId>
<artifactId>jffi</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>org.jruby.extras</groupId>
<artifactId>constantine</artifactId>
<version>0.7</version>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>0.9.94</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
<configuration>
<skipTests>false</skipTests>
<includes>
<include>**/*Test*.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment