| 组织ID: |
net.objecthunter |
| 项目ID: |
exp4j |
| 版本: |
0.4.3 |
| 最后修改时间: |
2018-08-22 18:15:52 |
| 包类型: |
jar |
| 标题: |
exp4j |
| 描述: |
A simple mathematical expression evaluator for java. |
| 相关URL: |
https://github.com/fasseg/exp4j |
| 大小: |
41.10KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.objecthunter</groupId>
<artifactId>exp4j</artifactId>
<version>0.4.3</version>
</dependency>
|
| Gradle引入代码: |
net.objecthunter:exp4j:0.4.3
|
| 下载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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.objecthunter</groupId>
<artifactId>exp4j</artifactId>
<version>0.4.3</version>
<name>exp4j</name>
<description>A simple mathematical expression evaluator for java.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:http://github.com/fasseg/exp4j.git</connection>
<developerConnection>scm:git:https://github.com/fasseg/exp4j.git</developerConnection>
<url>https://github.com/fasseg/exp4j</url>
<tag>exp4j-0.4.3</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>central-snapshots</id>
<uniqueVersion>false</uniqueVersion>
<name>snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<layout>default</layout>
</snapshotRepository>
<repository>
<id>central-releases</id>
<uniqueVersion>false</uniqueVersion>
<name>releases</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
<layout>default</layout>
</repository>
<downloadUrl>http://www.objecthunter.net/exp4j</downloadUrl>
<site>
<id>objecthunter.net</id>
<name>objecthunter.net</name>
<url>scpexe://trillian.objecthunter.net/srv/http/exp4j</url>
</site>
</distributionManagement>
<url>http://www.objecthunter.net/exp4j</url>
<issueManagement>
<url>https://github.com/fasseg/exp4j/issues</url>
<system>Github</system>
</issueManagement>
<mailingLists>
<mailingList>
<name>exp4j Google Group</name>
<archive>https://groups.google.com/forum/#!forum/exp4j</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>fas</id>
<name>frank</name>
<email>frank.asseg@objecthunter.net</email>
<url>http://www.objecthunter.net/</url>
<organizationUrl>http://www.objecthunter.net</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<reporting>
<excludeDefaults>true</excludeDefaults>
<outputDirectory>${project.build.directory}/site</outputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>summary</report>
<report>project-team</report>
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
<report>mailing-list</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.10</version>
</plugin>
</plugins>
</reporting>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>2.7</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
net.objecthunter.exp4j.ValidationResult.class
net.objecthunter.exp4j.operator.Operators$8.class
net.objecthunter.exp4j.operator.Operators$7.class
net.objecthunter.exp4j.operator.Operator.class
net.objecthunter.exp4j.operator.Operators$2.class
net.objecthunter.exp4j.operator.Operators$5.class
net.objecthunter.exp4j.operator.Operators.class
net.objecthunter.exp4j.operator.Operators$3.class
net.objecthunter.exp4j.operator.Operators$6.class
net.objecthunter.exp4j.operator.Operators$4.class
net.objecthunter.exp4j.operator.Operators$1.class
net.objecthunter.exp4j.tokenizer.VariableToken.class
net.objecthunter.exp4j.tokenizer.OperatorToken.class
net.objecthunter.exp4j.tokenizer.OpenParenthesesToken.class
net.objecthunter.exp4j.tokenizer.Tokenizer.class
net.objecthunter.exp4j.tokenizer.ArgumentSeparatorToken.class
net.objecthunter.exp4j.tokenizer.Token.class
net.objecthunter.exp4j.tokenizer.FunctionToken.class
net.objecthunter.exp4j.tokenizer.CloseParenthesesToken.class
net.objecthunter.exp4j.tokenizer.NumberToken.class
net.objecthunter.exp4j.Expression$1.class
net.objecthunter.exp4j.shuntingyard.ShuntingYard.class
net.objecthunter.exp4j.ExpressionBuilder.class
net.objecthunter.exp4j.function.Functions$9.class
net.objecthunter.exp4j.function.Functions$3.class
net.objecthunter.exp4j.function.Functions$6.class
net.objecthunter.exp4j.function.Functions$4.class
net.objecthunter.exp4j.function.Functions$17.class
net.objecthunter.exp4j.function.Functions$13.class
net.objecthunter.exp4j.function.Functions$12.class
net.objecthunter.exp4j.function.Functions$10.class
net.objecthunter.exp4j.function.Functions$20.class
net.objecthunter.exp4j.function.Functions$11.class
net.objecthunter.exp4j.function.Functions$2.class
net.objecthunter.exp4j.function.Functions$7.class
net.objecthunter.exp4j.function.Functions$16.class
net.objecthunter.exp4j.function.Function.class
net.objecthunter.exp4j.function.Functions$21.class
net.objecthunter.exp4j.function.Functions.class
net.objecthunter.exp4j.function.Functions$19.class
net.objecthunter.exp4j.function.Functions$1.class
net.objecthunter.exp4j.function.Functions$5.class
net.objecthunter.exp4j.function.Functions$8.class
net.objecthunter.exp4j.function.Functions$15.class
net.objecthunter.exp4j.function.Functions$18.class
net.objecthunter.exp4j.function.Functions$14.class
net.objecthunter.exp4j.Expression.class
META-INF/maven/net.objecthunter/exp4j/pom.xml
META-INF/maven/net.objecthunter/exp4j/pom.properties
|
| 依赖Jar: |
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
logback-classic-1.1.1.jar
/ch.qos.logback/logback-classic/1.1.1
查看logback-classic所有版本文件
|