rhino-android
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.apisense</groupId> <artifactId>rhino-android</artifactId> <version>1.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.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>io.apisense</groupId> <artifactId>rhino-android</artifactId> <version>1.3.0</version> <name>Rhino for Android</name> <description>Give access to RhinoScriptEngine from the JSR223 interfaces on Android JRE.</description> <url>https://apisense.io</url> <licenses> <license> <name>The GNU General Public License (GPL)</name> <url>https://www.gnu.org/licenses/gpl-2.0.txt</url> </license> </licenses> <developers> <developer> <id>aveuiller</id> <name>Antoine Veuiller</name> <email>aveuiller@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/APISENSE/rhino-android.git</connection> <developerConnection>scm:git:https://github.com/APISENSE/rhino-android</developerConnection> <url>https://github.com/APISENSE/rhino-android</url> </scm> <dependencies> <dependency> <groupId>com.sun.phobos</groupId> <artifactId>jsr223-api</artifactId> <version>1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mozilla</groupId> <artifactId>rhino</artifactId> <version>1.7.15</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> </project>