组织ID: |
javax.el |
项目ID: |
javax.el-api |
版本: |
3.0.0 |
最后修改时间: |
2018-07-24 11:48:58 |
包类型: |
jar |
标题: |
Expression Language 3.0 API |
相关URL: |
http://uel-spec.java.net |
大小: |
71.35KB |
|
Maven引入代码: |
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
</dependency>
|
Gradle引入代码: |
javax.el:javax.el-api:3.0.0
|
下载Jar包: |
|
POM文件内容: |
<?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">
<parent>
<groupId>net.java</groupId>
<artifactId>jvnet-parent</artifactId>
<version>3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<packaging>jar</packaging>
<version>3.0.0</version>
<name>Expression Language 3.0 API</name>
<properties>
<spec.version>3.0</spec.version>
<bundle.version>3.0.0</bundle.version>
<extensionName>javax.el</extensionName>
<bundle.symbolicName>javax.el-api</bundle.symbolicName>
<vendorName>Oracle Corporation</vendorName>
<findbugs.version>2.3.1</findbugs.version>
<findbugs.exclude />
<findbugs.threshold>High</findbugs.threshold>
</properties>
<url>http://uel-spec.java.net</url>
<organization>
<name>GlassFish Community</name>
<url>http://glassfish.org</url>
</organization>
<licenses>
<license>
<name>CDDL + GPLv2 with classpath exception</name>
<url>https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<issueManagement>
<system>jira</system>
<url>http://java.net/jira/browse/EL_SPEC</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>EL EG</name>
<archive>jsr341-experts@el-spec.java.net</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:svn:https://svn.java.net/svn/el-spec~source-code/tags/javax.el-api-3.0.0</connection>
<developerConnection>scm:svn:https://svn.java.net/svn/el-spec~source-code/tags/javax.el-api-3.0.0</developerConnection>
<url>http://java.net/projects/el-spec/sources/source-code/show/tags/javax.el-api-3.0.0</url>
</scm>
<developers>
<developer>
<id>kchung</id>
<name>Kin Man Chung</name>
<organization>Oracle Corporation</organization>
<roles>
<role>lead</role>
</roles>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>1.4.3</version>
<configuration>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
</supportedProjectTypes>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Description>
Expression Language ${spec.version} API
</Bundle-Description>
<Bundle-Version>${bundle.version}</Bundle-Version>
<Extension-Name>${extensionName}</Extension-Name>
<Specification-Version>${spec.version}</Specification-Version>
<Specification-Vendor>${vendorName}</Specification-Vendor>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>${vendorName}</Implementation-Vendor>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version> 2.1 </version>
<configuration>
<includePom>true</includePom>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<groups>
<group>
<title>Expresion Language API Documentation</title>
<packages>javax.el</packages>
</group>
</groups>
<bottom>
<![CDATA[Copyright © 2013,
<a href="http://www.oracle.com">Oracle</a>
and/or its affiliates. All Rights Reserved.
Use is subject to
<a href="{@docRoot}/doc-files/final-spec-license.html" target="_top">license terms</a>.
]]>
</bottom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
<configuration>
<threshold>${findbugs.threshold}</threshold>
<excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
<findbugsXmlOutput>true</findbugsXmlOutput>
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>${release.arguments}</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
<configuration>
<resourceBundles>
<resourceBundle>org.glassfish:legal:1.1</resourceBundle>
</resourceBundles>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
<configuration>
<threshold>${findbugs.threshold}</threshold>
<excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
javax.el.ArrayELResolver.class
javax.el.BeanELResolver$1.class
javax.el.BeanELResolver$BeanProperties.class
javax.el.BeanELResolver$BeanProperty.class
javax.el.BeanELResolver$BPSoftReference.class
javax.el.BeanELResolver$SoftConcurrentHashMap.class
javax.el.BeanELResolver.class
javax.el.BeanNameELResolver.class
javax.el.BeanNameResolver.class
javax.el.CompositeELResolver$CompositeIterator.class
javax.el.CompositeELResolver.class
javax.el.ELClass.class
javax.el.ELContext.class
javax.el.ELContextEvent.class
javax.el.ELContextListener.class
javax.el.ELException.class
javax.el.ELManager.class
javax.el.ELProcessor.class
javax.el.ELResolver.class
javax.el.ELUtil$1.class
javax.el.ELUtil.class
javax.el.EvaluationListener.class
javax.el.Expression.class
javax.el.ExpressionFactory.class
javax.el.FactoryFinder.class
javax.el.FunctionMapper.class
javax.el.ImportHandler.class
javax.el.LambdaExpression.class
javax.el.ListELResolver.class
javax.el.MapELResolver.class
javax.el.MethodExpression.class
javax.el.MethodInfo.class
javax.el.MethodNotFoundException.class
javax/el/PrivateMessages.properties
javax.el.PropertyNotFoundException.class
javax.el.PropertyNotWritableException.class
javax.el.ResourceBundleELResolver.class
javax.el.StandardELContext$1.class
javax.el.StandardELContext$DefaultFunctionMapper.class
javax.el.StandardELContext$DefaultVariableMapper.class
javax.el.StandardELContext$LocalBeanNameResolver.class
javax.el.StandardELContext.class
javax.el.StaticFieldELResolver.class
javax.el.TypeConverter.class
javax.el.ValueExpression.class
javax.el.ValueReference.class
javax.el.VariableMapper.class
META-INF/LICENSE.txt
META-INF/maven/javax.el/javax.el-api/pom.xml
META-INF/maven/javax.el/javax.el-api/pom.properties
|
依赖Jar: |
无
|