组织ID: |
javax.el |
项目ID: |
javax.el-api |
版本: |
2.2.4 |
最后修改时间: |
2018-07-24 05:37:04 |
包类型: |
jar |
标题: |
Expression Language API 2.2 |
相关URL: |
http://blogs.sun.com/kchung/ |
大小: |
37.95KB |
|
Maven引入代码: |
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>2.2.4</version>
</dependency>
|
Gradle引入代码: |
javax.el:javax.el-api:2.2.4
|
下载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>1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<packaging>jar</packaging>
<version>2.2.4</version>
<name>Expression Language API 2.2</name>
<properties>
<spec.version>2.2</spec.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>
<developers>
<developer>
<id>kchung</id>
<name>Kin Man Chung</name>
<url>http://blogs.sun.com/kchung/</url>
<organization>Oracle Corporation</organization>
<roles>
<role>lead</role>
</roles>
</developer>
</developers>
<url>http://uel.java.net</url>
<organization>
<name>GlassFish Community</name>
<url>http://glassfish.org</url>
</organization>
<licenses>
<license>
<name>CDDL + GPLv2 with classpath exception</name>
<url>http://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/UEL</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>EL Developer</name>
<archive>dev@uel.java.net</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:svn:https://svn.java.net/svn/uel~svn/tags/javax.el-api-2.2.4</connection>
<developerConnection>scm:svn:https://svn.java.net/svn/uel~svn/tags/javax.el-api-2.2.4</developerConnection>
<url>http://java.net/projects/uel/sources/svn/show/tags/javax.el-api-2.2.4</url>
</scm>
<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>
<_include>-osgi.bundle</_include>
</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>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<manifestEntries>
<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>
</manifestEntries>
</archive>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</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>
<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> Copyright (c) 1999-2011 Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms. </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>
</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.ELException.class
javax.el.MethodInfo.class
javax.el.ELContext.class
javax.el.ELContextEvent.class
javax.el.ELContextListener.class
javax.el.BeanELResolver$BPSoftReference.class
javax.el.ResourceBundleELResolver.class
javax.el.PropertyNotWritableException.class
javax.el.MapELResolver.class
javax.el.BeanELResolver$SoftConcurrentHashMap.class
javax.el.Expression.class
javax.el.PropertyNotFoundException.class
javax/el/PrivateMessages.properties
javax.el.ArrayELResolver.class
javax.el.ListELResolver.class
javax.el.ELResolver.class
javax.el.ExpressionFactory.class
javax.el.MethodExpression.class
javax.el.CompositeELResolver.class
javax.el.BeanELResolver$BeanProperty.class
javax.el.BeanELResolver$BeanProperties.class
javax.el.ValueReference.class
javax.el.MethodNotFoundException.class
javax.el.ValueExpression.class
javax.el.ELUtil$1.class
javax.el.FunctionMapper.class
javax.el.ELUtil.class
javax.el.VariableMapper.class
javax.el.CompositeELResolver$CompositeIterator.class
javax.el.BeanELResolver$1.class
javax.el.BeanELResolver.class
javax.el.FactoryFinder.class
META-INF/maven/javax.el/javax.el-api/pom.xml
META-INF/maven/javax.el/javax.el-api/pom.properties
|
依赖Jar: |
无
|