EL.
JSP 2.0 Expression Language Interpreter Implementation.
Here is the list of declaration for commons-el. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-el</groupId> <artifactId>commons-el</artifactId> <version>1.0</version> </dependency>
If you think this Maven repository POM file listing for commons-el 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-el-1.0 has 3 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 |
The following table lists the most popular artifacts which are depending on commons-el-1.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JSF | tomahawk 1.1.10 JSF components and utilities that can be used with any JSF implementation. This library is compatible with both JSF1.1 and JSF1.2; however for JSF1.2 users there is an alternative build of Tomahawk available that takes advantage of JSF1.2 features to offer some additional benefits. | 36 |
XML | docbkx-maven-base 2.0.14 A number of base classes, providing the basic behaviour of objects / plugins transforming DocBook XML sources into some other format. | 7 |
Build | openutils-testing4web 1.2.1 A simple infrastructure to build unit tests using ServletUnit, with all the needed Maven dependencies already set up | 7 |
The following plugins are used in the commons-el-1.0.jar
The following packages are defined in the commons-el-1.0.jar
org.apache.commons.el org.apache.commons.el.parser
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>commons-el</groupId> <artifactId>commons-el</artifactId> <name>EL</name> <version>1.0</version> <description>JSP 2.0 Expression Language Interpreter Implementation</description> <url>http://jakarta.apache.org/commons/el/</url> <issueManagement> <url>http://issues.apache.org/bugzilla/</url> </issueManagement> <ciManagement> <notifiers> <notifier> <address>commons-dev@jakarta.apache.org</address> </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/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</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/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</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/el/trunk</connection> <url>http://svn.apache.org/repos/asf/jakarta/commons/proper/el/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> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>servletapi</groupId> <artifactId>servletapi</artifactId> <version>2.4-20040521</version> <scope>provided</scope> </dependency> <dependency> <groupId>jspapi</groupId> <artifactId>jsp-api</artifactId> <version>2.0-20040521</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.3</version> </dependency> </dependencies> <distributionManagement> <repository> <id>default</id> <name>Default Repository</name> <url>file:///www/jakarta.apache.org/builds/jakarta-commons/el/</url> </repository> <site> <id>default</id> <name>Default Site</name> <url>scp://jakarta.apache.org//www/jakarta.apache.org/commons/el/</url> </site> </distributionManagement> </project>