Commons JEXL.
Jexl is an implementation of the JSTL Expression Language with extensions..
Here is the list of declaration for commons-jexl. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-jexl</groupId> <artifactId>commons-jexl</artifactId> <version>1.1</version> </dependency>
If you think this Maven repository POM file listing for commons-jexl is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: /LICENSE.txt.
The commons-jexl-1.1 has 2 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 |
---|---|---|
Log | commons-logging 1.0.3 Commons Logging | 69 |
JUnit | junit 3.8.1 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. | 1966 |
The following table lists the most popular artifacts which are depending on commons-jexl-1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Log | perf4j 0.9.16 Performance statistics logging and monitoring toolkit extension to log4j, logback and the java.util.logging framework. | 14 |
Log | perf4j 0.9.13 Performance statistics logging and monitoring toolkit extension to log4j and the java.util.logging framework. | 8 |
Log | perf4j 0.9.14 Performance statistics logging and monitoring toolkit extension to log4j and the java.util.logging framework. | 6 |
Data Structure | commons-configuration 1.7 Tools to assist in the reading of configuration/preferences files in various formats | 44 |
Development | plugin-support 1.0-alpha-1 Provides common support classes and components for plugins. | 8 |
The following plugins are used in the commons-jexl-1.1.jar
The following packages are defined in the commons-jexl-1.1.jar
org.apache.commons.jexl org.apache.commons.jexl.context org.apache.commons.jexl.junit org.apache.commons.jexl.parser org.apache.commons.jexl.resolver org.apache.commons.jexl.util org.apache.commons.jexl.util.introspection
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <modelVersion>4.0.0</modelVersion> <groupId>commons-jexl</groupId> <artifactId>commons-jexl</artifactId> <name>Commons JEXL</name> <version>1.1</version> <description>Jexl is an implementation of the JSTL Expression Language with extensions.</description> <url>http://jakarta.apache.org/commons/jexl/</url> <issueManagement> <url>http://issues.apache.org/jira/</url> </issueManagement> <ciManagement> <notifiers> <notifier> <configuration> <address>commons-dev@jakarta.apache.org</address> </configuration> </notifier> </notifiers> </ciManagement> <inceptionYear>2003</inceptionYear> <mailingLists> <mailingList> <name>Commons Dev List</name> <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/</archive> </mailingList> <mailingList> <name>Commons User List</name> <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/</archive> </mailingList> </mailingLists> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>/LICENSE.txt</url> </license> </licenses> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/jexl/trunk</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/jexl/trunk</developerConnection> <url>http://svn.apache.org/repos/asf/jakarta/commons/proper/jexl/trunk</url> </scm> <organization> <name>The Apache Software Foundation</name> <url>http://jakarta.apache.org</url> </organization> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <resources> <resource> <targetPath>META-INF</targetPath> <directory>.</directory> <includes> <include>NOTICE.txt</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-xdoc-plugin</artifactId> <version>1.9.2</version> <configuration> <comment><strong>Site Only</strong> - v1.9.2 (minimum)</comment> </configuration> </plugin> <plugin> <groupId>maven-plugins</groupId> <artifactId>maven-findbugs-plugin</artifactId> <version>1.1</version> <configuration> <comment><strong>Site Only</strong> - v1.1 (minimum)</comment> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> </dependency> </dependencies> <distributionManagement> <repository> <id>default</id> <name>Default Repository</name> <url>file:///www/jakarta.apache.org/builds/jakarta-commons/jexl/</url> </repository> <site> <id>default</id> <name>Default Site</name> <url>scp://people.apache.org//www/jakarta.apache.org/commons/jexl/</url> </site> <status>converted</status> </distributionManagement> </project>