grizzly-jruby
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sun.grizzly</groupId> <artifactId>grizzly-jruby</artifactId> <version>1.8.30</version> </dependency>
<?xml version='1.0' encoding='UTF-8'?> <project xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd' xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'> <modelVersion>4.0.0</modelVersion> <groupId>com.sun.grizzly</groupId> <artifactId>grizzly-jruby</artifactId> <packaging>jar</packaging> <version>1.8.30</version> <name>grizzly-jruby</name> <url>https://glassfish-scripting.dev.java.net</url> <scm> <connection>scm:svn:https://svn.dev.java.net/svn/glassfish-scripting/tags/grizzly-jruby-1.8.30</connection> <developerConnection>scm:svn:https://svn.dev.java.net/svn/glassfish-scripting/tags/grizzly-jruby-1.8.30</developerConnection> </scm> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <!-- the ID maps to ~/.m2/settings.xml, so don't change the ID --> <id>rator.sfbay</id> <url>dav:http://glassfish-maven-repository.sfbay/maven/repositories/glassfish/</url> </repository> </distributionManagement> <properties> <jruby.version>1.3.1</jruby.version> <jruby-monitor.version>1.5.11</jruby-monitor.version> <jruby-commons.version>1.4</jruby-commons.version> <grizzly-released-version>1.9.18-e</grizzly-released-version> <asm.version>2.2.3</asm.version> <backport-util.version>2.0_01_pd</backport-util.version> <junit-version>3.8.1</junit-version> </properties> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <finalName>${artifactId}</finalName> </configuration> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Main-Class>com.sun.grizzly.standalone.JRuby</Main-Class> </manifestEntries> <manifest> <addClasspath>true</addClasspath> </manifest> </archive> <finalName>${artifactId}</finalName> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-dependencies</id> <phase>initialize</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeArtifactIds>grizzly-scripting-common</includeArtifactIds> <outputDirectory>${project.build.outputDirectory}</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> </build> <dependencies> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-complete</artifactId> <version>${jruby.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sun.grizzly</groupId> <artifactId>grizzly-http</artifactId> <version>${grizzly-released-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.grizzly.scripting</groupId> <artifactId>grizzly-scripting-common</artifactId> <version>1.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.glassfish.scripting</groupId> <artifactId>jruby-commons</artifactId> <version>${jruby-commons.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.glassfish.scripting</groupId> <artifactId>jruby-monitor</artifactId> <version>${jruby-monitor.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>5.8</version> <scope>test</scope> <classifier>jdk15</classifier> </dependency> </dependencies> <repositories> </repositories> <licenses> <license> <distribution>repo</distribution> <name>CDDL and GPLv2 w/ classpath execption dual license</name> <url>https://glassfish.dev.java.net/public/CDDL+GPL.html</url> </license> </licenses> </project>