组织ID: |
org.glassfish |
项目ID: |
javax.el |
版本: |
3.0.1-b11 |
最后修改时间: |
2018-12-15 11:53:09 |
包类型: |
jar |
标题: |
Expression Language 3.0 |
相关URL: |
http://uel.java.net |
大小: |
231.44KB |
|
Maven引入代码: |
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.1-b11</version>
</dependency>
|
Gradle引入代码: |
org.glassfish:javax.el:3.0.1-b11
|
下载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>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.1-b11</version>
<packaging>jar</packaging>
<name>Expression Language 3.0</name>
<properties>
<bundle.version>3.0.0</bundle.version>
<spec.version>3.0</spec.version>
<extensionName>javax.el</extensionName>
<bundle.symbolicName>com.sun.el.javax.el</bundle.symbolicName>
<vendorName>Oracle Corporation</vendorName>
<findbugs.version>2.5.2</findbugs.version>
<findbugs.exclude>${project.basedir}/exclude.xml</findbugs.exclude>
<findbugs.threshold>High</findbugs.threshold>
<tlda-license.url>http://hudson-sca.us.oracle.com/job/tlda-license/lastSuccessfulBuild/artifact</tlda-license.url>
</properties>
<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>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 Developer</name>
<archive>dev@uel.java.net</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:https://github.com/javaee/uel-ri.git</connection>
<developerConnection>scm:git:https://github.com/javaee/uel-ri.git</developerConnection>
<url>https://github.com/javaee/uel-ri.git</url>
</scm>
<developers>
<developer>
<id>kchung</id>
<name>Kin-man Chung</name>
<organization>Oracle</organization>
<roles>
<role>lead</role>
</roles>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>api/src/main/java</source>
<source>impl/src/main/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>1.4.3</version>
<configuration>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Description>
Expression Language ${spec.version} API and Implementation
</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>
</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.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>
<sourcepath>api/src;impl/src</sourcepath>
<groups>
<group>
<title>Expresion Language 3.0 API and Implementation</title>
<packages>com.sun.el</packages>
</group>
</groups>
<bottom> Copyright (c) 2013 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>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.1</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>2.7.1</version>
</dependency>
</dependencies>
<configuration>
<forkMode>never</forkMode>
</configuration>
</plugin>
<plugin>
<groupId>org.glassfish.copyright</groupId>
<artifactId>glassfish-copyright-maven-plugin</artifactId>
<version>1.32</version>
</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>api/src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
</resource>
<resource>
<directory>impl/src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</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>
<repositories>
<repository>
<id>jvnet-nexus-release</id>
<url>https://maven.java.net/content/repositories/releases</url>
<snapshots>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>licensee</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>1.0-beta-4</version>
<inherited>false</inherited>
<executions>
<execution>
<id>get-license</id>
<phase>package</phase>
<goals>
<goal>download-single</goal>
</goals>
<configuration>
<url>${tlda-license.url}</url>
<fromFile>
TLDA_SCSL_Licensees_License_Notice.txt
</fromFile>
<toDir>${project.build.directory}/license</toDir>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<inherited>false</inherited>
<executions>
<execution>
<id>make-licensee-src-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<finalName>el-${project.version}-src</finalName>
<attach>false</attach>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE.txt
javax.el.ELUtil$1.class
javax.el.ELClass.class
javax.el.ImportHandler.class
javax.el.StandardELContext.class
javax.el.ListELResolver.class
javax.el.StandardELContext$LocalBeanNameResolver.class
javax.el.ExpressionFactory.class
javax.el.ELContextEvent.class
javax.el.FunctionMapper.class
javax.el.ArrayELResolver.class
javax.el.PropertyNotFoundException.class
javax.el.StandardELContext$1.class
javax.el.Expression.class
javax.el.ELUtil$MethodWrapper.class
javax.el.BeanNameELResolver.class
javax.el.ELResolver.class
javax.el.VariableMapper.class
javax.el.CompositeELResolver.class
javax.el.MethodInfo.class
javax.el.ResourceBundleELResolver.class
javax.el.BeanELResolver$BeanProperties.class
javax.el.ELContext.class
javax.el.ELUtil$ConstructorWrapper.class
javax.el.BeanELResolver.class
javax.el.MapELResolver.class
javax.el.TypeConverter.class
javax.el.ValueExpression.class
javax.el.FactoryFinder.class
javax.el.PropertyNotWritableException.class
javax.el.BeanELResolver$1.class
javax.el.StaticFieldELResolver.class
javax.el.ELUtil.class
javax.el.BeanELResolver$SoftConcurrentHashMap.class
javax.el.LambdaExpression.class
javax.el.BeanNameResolver.class
javax.el.MethodNotFoundException.class
javax/el/PrivateMessages.properties
javax.el.MethodExpression.class
javax.el.StandardELContext$DefaultFunctionMapper.class
javax.el.CompositeELResolver$CompositeIterator.class
javax.el.ELUtil$Wrapper.class
javax.el.BeanELResolver$BPSoftReference.class
javax.el.ELProcessor.class
javax.el.ValueReference.class
javax.el.ELContextListener.class
javax.el.StandardELContext$DefaultVariableMapper.class
javax.el.EvaluationListener.class
javax.el.ELManager.class
javax.el.ELException.class
javax.el.BeanELResolver$BeanProperty.class
com.sun.el.ExpressionFactoryImpl.class
com.sun.el.util.ReflectionUtil.class
com.sun.el.util.ReflectionUtil$1.class
com.sun.el.util.ReflectionUtil$MethodWrapper.class
com.sun.el.util.MessageFactory.class
com.sun.el.util.ReflectionUtil$ConstructorWrapper.class
com.sun.el.util.ReflectionUtil$Wrapper.class
com.sun.el.stream.Stream$3.class
com.sun.el.stream.Stream$7$2.class
com.sun.el.stream.Stream$4$1.class
com.sun.el.stream.Stream$1.class
com.sun.el.stream.StreamELResolver$1.class
com.sun.el.stream.Stream$5.class
com.sun.el.stream.Stream$7.class
com.sun.el.stream.Stream.class
com.sun.el.stream.Stream$7$1.class
com.sun.el.stream.Operator.class
com.sun.el.stream.Stream$2.class
com.sun.el.stream.Stream$6.class
com.sun.el.stream.Stream$4.class
com.sun.el.stream.StreamELResolver.class
com.sun.el.stream.Stream$6$1.class
com.sun.el.stream.Stream$3$1.class
com.sun.el.stream.Stream$8.class
com.sun.el.stream.Stream$Iterator1.class
com.sun.el.stream.Stream$2$1.class
com.sun.el.stream.Stream$8$2.class
com.sun.el.stream.Stream$9$1.class
com.sun.el.stream.Stream$Iterator0.class
com.sun.el.stream.Stream$Iterator2.class
com.sun.el.stream.Stream$9.class
com.sun.el.stream.Stream$1$1.class
com.sun.el.stream.Optional.class
com.sun.el.stream.Stream$8$1.class
com.sun.el.ValueExpressionLiteral.class
com.sun.el.MethodExpressionLiteral.class
com.sun.el.parser.AstMod.class
com.sun.el.parser.AstFunction.class
com.sun.el.parser.AstIdentifier.class
com.sun.el.parser.AstGreaterThanEqual.class
com.sun.el.parser.AstGreaterThan.class
com.sun.el.parser.AstOr.class
com.sun.el.parser.AstLessThan.class
com.sun.el.parser.AstInteger.class
com.sun.el.parser.AstDynamicExpression.class
com.sun.el.parser.ELParser.class
com.sun.el.parser.AstChoice.class
com.sun.el.parser.AstBracketSuffix.class
com.sun.el.parser.AstMult.class
com.sun.el.parser.TokenMgrError.class
com.sun.el.parser.AstLessThanEqual.class
com.sun.el.parser.AstLiteralExpression.class
com.sun.el.parser.AstLambdaParameters.class
com.sun.el.parser.AstLambdaExpression.class
com.sun.el.parser.AstDotSuffix.class
com.sun.el.parser.BooleanNode.class
com.sun.el.parser.AstMapEntry.class
com.sun.el.parser.AstString.class
com.sun.el.parser.ArithmeticNode.class
com.sun.el.parser.AstValue.class
com.sun.el.parser.AstAnd.class
com.sun.el.parser.ELParserTreeConstants.class
com.sun.el.parser.AstValue$Target.class
com.sun.el.parser.ELParser$LookaheadSuccess.class
com.sun.el.parser.ELParserConstants.class
com.sun.el.parser.AstCompositeExpression.class
com.sun.el.parser.AstListData.class
com.sun.el.parser.AstTrue.class
com.sun.el.parser.SimpleCharStream.class
com.sun.el.parser.JJTELParserState.class
com.sun.el.parser.SimpleNode.class
com.sun.el.parser.AstPlus.class
com.sun.el.parser.AstFalse.class
com.sun.el.parser.AstAssign.class
com.sun.el.parser.AstNull.class
com.sun.el.parser.ELParserTokenManager.class
com.sun.el.parser.Token.class
com.sun.el.parser.AstMinus.class
com.sun.el.parser.AstMapData.class
com.sun.el.parser.AstNot.class
com.sun.el.parser.AstDeferredExpression.class
com.sun.el.parser.AstDiv.class
com.sun.el.parser.AstNegative.class
com.sun.el.parser.AstEqual.class
com.sun.el.parser.AstEmpty.class
com.sun.el.parser.ParseException.class
com.sun.el.parser.ELParser$JJCalls.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
surefire-junit47-2.7.1.jar
/org.apache.maven.surefire/surefire-junit47/2.7.1
查看surefire-junit47所有版本文件
|