| 组织ID: |
org.jboss.spec.javax.el |
| 项目ID: |
jboss-el-api_3.0_spec |
| 版本: |
2.0.0.CR2 |
| 最后修改时间: |
2019-09-07 00:20:36 |
| 包类型: |
jar |
| 标题: |
Jakarta Expression Language 3.0 API |
| 描述: |
Jakarta Expression Language defines an expression language for Java applications
|
| 相关URL: |
https://projects.eclipse.org/projects/ee4j.el |
| 大小: |
87.57KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.jboss.spec.javax.el</groupId>
<artifactId>jboss-el-api_3.0_spec</artifactId>
<version>2.0.0.CR2</version>
</dependency>
|
| Gradle引入代码: |
org.jboss.spec.javax.el:jboss-el-api_3.0_spec:2.0.0.CR2
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 1997, 2018 Oracle and/or its affiliates and others.
All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<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>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>35</version>
<relativePath />
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.spec.javax.el</groupId>
<artifactId>jboss-el-api_3.0_spec</artifactId>
<version>2.0.0.CR2</version>
<packaging>jar</packaging>
<name>Jakarta Expression Language 3.0 API</name>
<description>
Jakarta Expression Language defines an expression language for Java applications
</description>
<url>https://projects.eclipse.org/projects/ee4j.el</url>
<properties>
<!-- Make sure the two versions are in sync with the maven version -->
<spec.version>3.0</spec.version>
<bundle.version>3.0.3</bundle.version>
<extensionName>javax.el</extensionName>
<bundle.symbolicName>com.sun.el.javax.el</bundle.symbolicName>
<vendorName>Oracle Corporation</vendorName>
<findbugs.version>2.4.0</findbugs.version>
<findbugs.exclude />
<findbugs.threshold>High</findbugs.threshold>
</properties>
<licenses>
<license>
<name>EPL 2.0</name>
<url>http://www.eclipse.org/legal/epl-2.0</url>
<distribution>repo</distribution>
</license>
<license>
<name>GPL2 w/ CPE</name>
<url>https://www.gnu.org/software/classpath/license.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:jboss/jboss-jakarta-el-api_spec.git</connection>
<developerConnection>scm:git:git@github.com:jboss/jboss-jakarta-el-api_spec.git</developerConnection>
<url>https://github.com/jboss/jboss-jakarta-el-api_spec</url>
<tag>jboss-el-api_3.0_spec-2.0.0.CR2</tag>
</scm>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
<resource>
<directory>${project.basedir}/..</directory>
<includes>
<include>LICENSE.md</include>
<include>NOTICE.md</include>
</includes>
<targetPath>META-INF</targetPath>
</resource>
</resources>
<plugins>
<!-- Restricts the Java version to 1.7 -->
<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>
<!--
Configure maven-bundle-plugin to generate OSGi manifest.
Please note: we use the manifest goal only and not the bundle goal.
The bundle goal can lead to very surprising results if the package names are not correctly specified.
So, we use the jar plugin to generate the jar.
-->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
</supportedProjectTypes>
<archive>
<manifestEntries>
<Automatic-Module-Name>beta.jboss.el.api_3_0</Automatic-Module-Name>
</manifestEntries>
</archive>
<instructions>
<Bundle-Description>
Expression Language ${spec.version} API and Implementation
</Bundle-Description>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<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>
<!-- Adds the manifest file created by the org.apache.felix:maven-bundle-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>
<!-- Creates the source jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<includePom>true</includePom>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
Create Javadoc for API jar
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>attach-api-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<source>1.8</source>
<additionalJOption>-Xdoclint:none</additionalJOption>
<description>Jakarta Expression Language API documentation</description>
<doctitle>Jakarta Expression Language API documentation</doctitle>
<windowtitle>Jakarta Expression Language API documentation</windowtitle>
<header><![CDATA[<br>Jakarta Expression Language API v${project.version}]]></header>
<bottom><![CDATA[
Comments to: <a href="mailto:el-dev@eclipse.org">el-dev@eclipse.org</a>.<br>
Copyright © 2019 Eclipse Foundation. All rights reserved.<br>
Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>.]]>
</bottom>
<docfilessubdirs>true</docfilessubdirs>
<groups>
<group>
<title>Jakarta Expression Language API Documentation</title>
<packages>
javax.el.*
</packages>
</group>
</groups>
</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-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
</plugins>
</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.ELProcessor.class
javax.el.ImportHandler.class
javax.el.StaticFieldELResolver.class
javax.el.ELException.class
javax.el.ELUtil$1.class
javax.el.ListELResolver.class
javax.el.PropertyNotWritableException.class
javax.el.ELContextListener.class
javax.el.EvaluationListener.class
javax.el.CompositeELResolver$CompositeIterator.class
javax.el.Expression.class
javax.el.MethodInfo.class
javax.el.MethodNotFoundException.class
javax.el.StandardELContext$LocalBeanNameResolver.class
javax.el.ValueReference.class
javax.el.FunctionMapper.class
javax.el.ELUtil.class
javax.el.ELUtil$2.class
javax.el.BeanNameResolver.class
javax.el.ELManager.class
javax.el.ELUtil$ConstructorWrapper.class
javax.el.Util.class
javax.el.StandardELContext$DefaultFunctionMapper.class
javax.el.FactoryFinder.class
javax.el.ELContext.class
javax.el.BeanNameELResolver.class
javax.el.ValueExpression.class
javax.el.ExpressionFactory.class
javax.el.ImportHandler$1.class
javax.el.MapELResolver.class
javax.el.PropertyNotFoundException.class
javax.el.ArrayELResolver.class
javax.el.FactoryFinder$1.class
javax.el.ELResolver.class
javax.el.BeanELResolver.class
javax.el.StandardELContext$1.class
javax.el.ELClass.class
javax.el.ResourceBundleELResolver.class
javax.el.TypeConverter.class
javax.el.ELUtil$Wrapper.class
javax.el.LambdaExpression.class
javax.el.VariableMapper.class
javax.el.CompositeELResolver.class
javax.el.ELContextEvent.class
javax.el.ELUtil$MethodWrapper.class
javax.el.StandardELContext.class
javax/el/PrivateMessages.properties
javax.el.MethodExpression.class
javax.el.StandardELContext$DefaultVariableMapper.class
META-INF/NOTICE.md
META-INF/LICENSE.md
org.jboss.el.cache.FactoryFinderCache$1.class
org.jboss.el.cache.BeanPropertiesCache$BeanProperties.class
org.jboss.el.cache.BeanPropertiesCache$SoftConcurrentHashMap.class
org.jboss.el.cache.BeanPropertiesCache$BPSoftReference.class
org.jboss.el.cache.FactoryFinderCache.class
org.jboss.el.cache.BeanPropertiesCache$BeanProperty.class
org.jboss.el.cache.FactoryFinderCache$CacheKey.class
org.jboss.el.cache.BeanPropertiesCache.class
META-INF/maven/org.jboss.spec.javax.el/jboss-el-api_3.0_spec/pom.xml
META-INF/maven/org.jboss.spec.javax.el/jboss-el-api_3.0_spec/pom.properties
META-INF/INDEX.LIST
|
| 依赖Jar: |
无
|