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>org.jvnet.hudson</groupId> <artifactId>commons-jexl</artifactId> <version>1.1-hudson-20071021</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-hudson-20071021 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-hudson-20071021. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
XML | commons-jelly 1.1-hudson-20090709 Jelly is a Java and XML based scripting engine. Jelly combines the best ideas from JSTL, Velocity, DVSL, Ant and Cocoon all together in a simple yet powerful scripting engine. | 17 |
XML | commons-jelly 1.1-hudson-20071224 Jelly is a Java and XML based scripting engine. Jelly combines the best ideas from JSTL, Velocity, DVSL, Ant and Cocoon all together in a simple yet powerful scripting engine. | 27 |
The following plugins are used in the commons-jexl-1.1-hudson-20071021.jar
The following packages are defined in the commons-jexl-1.1-hudson-20071021.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>org.jvnet.hudson</groupId> <artifactId>commons-jexl</artifactId> <name>Commons JEXL</name> <version>1.1-hudson-20071021</version> <description>Jexl is an implementation of the JSTL Expression Language with extensions.</description> <url>http://jakarta.apache.org/commons/jexl/</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>/LICENSE.txt</url> </license> </licenses> <organization> <name>The Apache Software Foundation</name> <url>http://jakarta.apache.org</url> </organization> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemProperties> <org.xml.sax.driver>org.apache.xerces.parsers.SAXParser</org.xml.sax.driver> </systemProperties> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Extension-Name>org.apache.commons.jexl</Extension-Name> <Specification-Vendor>Apache Software Foundation</Specification-Vendor> <Specification-Version>1.0</Specification-Version> <Implementation-Vendor>Apache Software Foundation</Implementation-Vendor> <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id> <Implementation-Version>1.1</Implementation-Version> <X-Compile-Source-JDK>${maven.compile.source}</X-Compile-Source-JDK> <X-Compile-Target-JDK>${maven.compile.target}</X-Compile-Target-JDK> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <debug>true</debug> <optimize>false</optimize> <showDeprecation>true</showDeprecation> <source>1.2</source> <target>1.2</target> </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> <optional>true</optional> </dependency> </dependencies> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <id>local-repository</id> <url>file:${path-to-m2-repo.java.net}</url> </repository> </distributionManagement> </project>