rhino unofficial distribution for wro4j.
A distribution of rhino which releases snapshots from a submodule folder containing forked sources..
Here is the list of declaration for rhino. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>ro.isdc.wro4j</groupId> <artifactId>rhino</artifactId> <version>1.7R5-20130223-1</version> </dependency>
If you think this Maven repository POM file listing for rhino is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The rhino-1.7R5-20130223-1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.11 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 2031 |
The following plugins are used in the rhino-1.7R5-20130223-1.jar
The following packages are defined in the rhino-1.7R5-20130223-1.jar
org.mozilla.classfile org.mozilla.javascript org.mozilla.javascript.annotations org.mozilla.javascript.ast org.mozilla.javascript.commonjs.module org.mozilla.javascript.commonjs.module.provider org.mozilla.javascript.debug org.mozilla.javascript.jdk13 org.mozilla.javascript.jdk15 org.mozilla.javascript.json org.mozilla.javascript.optimizer org.mozilla.javascript.regexp org.mozilla.javascript.serialize org.mozilla.javascript.tools org.mozilla.javascript.tools.debugger org.mozilla.javascript.tools.debugger.treetable org.mozilla.javascript.tools.idswitch org.mozilla.javascript.tools.jsc org.mozilla.javascript.tools.shell org.mozilla.javascript.v8dtoa org.mozilla.javascript.xml
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <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.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>ro.isdc.wro4j</groupId> <artifactId>rhino</artifactId> <version>1.7R5-20130223-1</version> <packaging>jar</packaging> <name>rhino unofficial distribution for wro4j</name> <description> A distribution of rhino which releases snapshots from a submodule folder containing forked sources. </description> <scm> <url>http://github.com/wro4j/rhino</url> <connection>scm:git:https://github.com/wro4j/rhino.git</connection> <developerConnection>scm:git:https://github.com/wro4j/rhino.git</developerConnection> <tag>HEAD</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <rhino.submodule>submodule</rhino.submodule> <junit.version>4.11</junit.version> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>${rhino.submodule}</sourceDirectory> <resources> <resource> <filtering>false</filtering> <directory>${rhino.submodule}/src/</directory> <includes> <include>**/*</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> <resource> <filtering>false</filtering> <directory>${rhino.submodule}/toolsrc/</directory> <includes> <include>**/*</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.5</source> <target>1.5</target> <includes> <include>src/**/*.java</include> <include>toolsrc/**/*.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <configuration> <docfilessubdirs>false</docfilessubdirs> <sourcepath>${rhino.submodule}/src/</sourcepath> </configuration> </plugin> </plugins> </build> </project>