组织ID: |
ognl |
项目ID: |
ognl |
版本: |
3.2.10 |
最后修改时间: |
2018-12-15 22:46:34 |
包类型: |
jar |
标题: |
OGNL - Object Graph Navigation Library |
描述: |
OGNL - Object Graph Navigation Library |
相关URL: |
http://ognl.org |
大小: |
243.88KB |
|
Maven引入代码: |
<dependency>
<groupId>ognl</groupId>
<artifactId>ognl</artifactId>
<version>3.2.10</version>
</dependency>
|
Gradle引入代码: |
ognl:ognl:3.2.10
|
下载Jar包: |
|
POM文件内容: |
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>ognl</groupId>
<artifactId>ognl</artifactId>
<packaging>jar</packaging>
<version>3.2.10</version>
<name>OGNL - Object Graph Navigation Library</name>
<description>OGNL - Object Graph Navigation Library</description>
<inceptionYear>1997</inceptionYear>
<url>http://ognl.org</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:jkuhnert/ognl.git</connection>
<url>git@github.com:jkuhnert/ognl.git</url>
<developerConnection>scm:git:git@github.com:jkuhnert/ognl.git</developerConnection>
</scm>
<organization>
<name>OpenSymphony</name>
<url>http://www.opensymphony.com</url>
</organization>
<issueManagement>
<system>jira</system>
<url>http://jira.opensymphony.com/browse/OGNL</url>
</issueManagement>
<developers>
<developer>
<id>lukaszlenart</id>
<email>lukaszlenart@apache.org</email>
<roles>
<role>ASF Committer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>2.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.24.1-GA</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
<executions>
<execution>
<id>compile-tests</id>
<phase>process-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version> <!-- Most recent 2.x available -->
<configuration>
<excludes>
<exclude>**/OgnlTestCase.java</exclude>
<exclude>**/Java8Test.java</exclude>
<exclude>**/*$*</exclude>
</excludes>
<includes>
<include>**/*Test.java</include>
<include>**/TestOgnlRuntime.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<compress>true</compress>
<index>true</index>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<archive>
<compress>true</compress>
<index>true</index>
</archive>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<archive>
<compress>true</compress>
<index>true</index>
</archive>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.6.1</version> <!-- Most recent 2.x available -->
</plugin>
</plugins>
<defaultGoal>install</defaultGoal>
</build>
<profiles>
<profile>
<id>javacc-generate</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>generate</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<java classname="org.javacc.jjtree.Main" fork="true">
<arg value="-OUTPUT_DIRECTORY=${project.build.sourceDirectory}/ognl" />
<arg value="${project.basedir}/src/etc/ognl.jjt" />
</java>
<java classname="org.javacc.parser.Main" fork="true">
<arg value="-OUTPUT_DIRECTORY=${project.build.sourceDirectory}/ognl" />
<arg value="${project.basedir}/src/etc/ognl.jj" />
</java>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
ognl.ASTSelectLast.class
ognl.ClassResolver.class
ognl.OgnlException.class
ognl.OgnlRuntime$MatchingMethod.class
ognl.ASTStaticField.class
ognl.ASTVarRef.class
ognl.internal.ClassCacheImpl.class
ognl.ASTAnd.class
ognl.NumberElementsAccessor.class
ognl.Evaluation.class
ognl.ASTShiftLeft.class
ognl.enhance.ContextClassLoader.class
ognl.Token.class
ognl.CollectionElementsAccessor.class
ognl.ExpressionNode.class
META-INF/maven/ognl/ognl/pom.properties
ognl.ElementsAccessor.class
ognl.OgnlRuntime.class
ognl.ASTGreater.class
ognl.ASTConst.class
ognl.ASTLess.class
ognl.ASTInstanceof.class
ognl.ASTRootVarRef.class
ognl.ASTMultiply.class
ognl.IntHashMap$Entry.class
ognl.enhance.ExpressionCompiler.class
ognl.ASTNot.class
ognl.NumericExpression.class
ognl.ASTList.class
ognl.ASTSelectFirst.class
ognl.ASTIn.class
ognl.ASTEval.class
ognl.ASTProject.class
ognl.MemberAccess.class
ognl.TokenMgrError.class
ognl.ObjectPropertyAccessor.class
ognl.ASTThisVarRef.class
ognl.internal.ClassCache.class
ognl.MethodAccessor.class
ognl.ASTMap.class
ognl.NodeType.class
ognl.BooleanExpression.class
ognl.ArrayElementsAccessor$1.class
ognl.enhance.LocalReference.class
ognl.ASTKeyValue.class
ognl.OgnlParserTokenManager.class
ognl.ASTStaticMethod.class
ognl.IteratorEnumeration.class
ognl.IteratorPropertyAccessor.class
ognl.OgnlInvokePermission.class
ognl.JJTOgnlParserState.class
ognl.ASTRemainder.class
ognl.EvaluationPool.class
ognl.ASTBitOr.class
ognl.IntHashMap$IntHashMapIterator.class
ognl.ASTLessEq.class
ognl.ASTShiftRight.class
ognl.SimpleNode.class
ognl.enhance.UnsupportedCompilationException.class
ognl.ComparisonExpression.class
ognl.OgnlParser$JJCalls.class
ognl.ASTProperty.class
ognl.Ognl.class
ognl.OgnlParser$1.class
ognl.OgnlRuntime$1.class
ognl.ASTAdd.class
ognl.NumericTypes.class
ognl.ASTSubtract.class
ognl.EnumerationIterator.class
ognl.ASTMethod.class
ognl.ASTUnsignedShiftRight.class
ognl.SetPropertyAccessor.class
ognl.ASTGreaterEq.class
ognl.ASTXor.class
ognl.NullHandler.class
ognl.ObjectIndexedPropertyDescriptor.class
ognl.ClassCacheInspector.class
ognl.enhance.OgnlExpressionCompiler.class
ognl.enhance.ExpressionAccessor.class
ognl.OgnlContext.class
ognl.ParseException.class
ognl.NumberElementsAccessor$1.class
ognl.Node.class
ognl.ArrayPropertyAccessor.class
ognl.ExpressionSyntaxException.class
ognl.ObjectElementsAccessor$1.class
ognl.ArrayElementsAccessor.class
ognl.InappropriateExpressionException.class
ognl.ASTCtor.class
ognl.IntHashMap.class
ognl.internal.Entry.class
ognl.TypeConverter.class
ognl.OgnlParserTreeConstants.class
ognl.ASTDivide.class
ognl.OgnlParser.class
ognl.enhance.EnhancedClassLoader.class
ognl.IteratorElementsAccessor.class
ognl.PropertyAccessor.class
ognl.DynamicSubscript.class
ognl.ObjectNullHandler.class
ognl.OgnlRuntime$ClassPropertyMethodCache.class
ognl.JavaCharStream.class
ognl.ASTEq.class
ognl.NoSuchPropertyException.class
ognl.ASTTest.class
ognl.ASTSelect.class
ognl.EnumerationPropertyAccessor.class
ognl.ObjectMethodAccessor.class
ognl.ObjectElementsAccessor.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
easymock-2.5.2.jar
/org.easymock/easymock/2.5.2
查看easymock所有版本文件
javassist-3.24.1-GA.jar
/org.javassist/javassist/3.24.1-GA
查看javassist所有版本文件
|