Download exp4j-0.3.11.jar file

Introduction

You can download exp4j-0.3.11.jar in this page.

License

Apache License 2.0

Type List

exp4j-0.3.11.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/de.congrace/exp4j/pom.properties
META-INF/maven/de.congrace/exp4j/pom.xml
de.congrace.exp4j.ArrayUtil.class
de.congrace.exp4j.Calculable.class
de.congrace.exp4j.CalculationToken.class
de.congrace.exp4j.CommandlineInterpreter.class
de.congrace.exp4j.CustomFunction.class
de.congrace.exp4j.CustomOperator.class
de.congrace.exp4j.ExpressionBuilder.class
de.congrace.exp4j.ExpressionUtil.class
de.congrace.exp4j.FunctionSeparatorToken.class
de.congrace.exp4j.FunctionToken.class
de.congrace.exp4j.InvalidCustomFunctionException.class
de.congrace.exp4j.NumberToken.class
de.congrace.exp4j.OperatorToken.class
de.congrace.exp4j.ParenthesesToken.class
de.congrace.exp4j.RPNConverter.class
de.congrace.exp4j.RPNExpression.class
de.congrace.exp4j.Token.class
de.congrace.exp4j.Tokenizer.class
de.congrace.exp4j.UnknownFunctionException.class
de.congrace.exp4j.UnparsableExpressionException.class
de.congrace.exp4j.VariableToken.class

Pom

exp4j-0.3.11.pom file content.

<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>de.congrace</groupId>
	<artifactId>exp4j</artifactId>
	<version>0.3.11</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>
	</scm>
	<url>https://exp4j.congrace.de</url>
	<issueManagement>
		<url>http://jira.congrace.de/jira/</url>
		<system>Jira</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>fas@congrace.de</email>
			<url>http://congrace.de</url>
			<organization>congrace.de</organization>
			<organizationUrl>http://congrace.de</organizationUrl>
			<roles>
				<role>developer</role>
			</roles>
			<timezone>+1</timezone>
		</developer>
	</developers>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.2</version>
			<type>jar</type>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.livetribe</groupId>
			<artifactId>livetribe-jsr223</artifactId>
			<version>2.0.6</version>
			<type>jar</type>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<distributionManagement>
		<snapshotRepository>
			<uniqueVersion>false</uniqueVersion>
			<id>central-snapshots</id>
			<name>snapshots</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
			<layout>default</layout>
		</snapshotRepository>
		<repository>
			<uniqueVersion>false</uniqueVersion>
			<id>central-releases</id>
			<name>releases</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
			<layout>default</layout>
		</repository>
		<downloadUrl>http://projects.congrace.de/exp4j</downloadUrl>
		<site>
			<id>congrace.exp4j</id>
			<name>congrace.de - exp4j</name>
			<url>scpexe://congrace.de/opt/www/exp4j</url>
		</site>
	</distributionManagement>
	<licenses>
		<license>
			<name>Apache License 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<build>
		<extensions>
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-ssh-external</artifactId>
			</extension>
		</extensions>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
					<encoding>${project.build.sourceEncoding}</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-resources-plugin</artifactId>
				<version>2.5</version>
				<configuration>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.8</version>
				<configuration>
					<encoding>${project.build.sourceEncoding}</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-site-plugin</artifactId>
				<version>3.3</version>
				<configuration>
					<reportPlugins>
						<plugin>
							<groupId>org.apache.maven.plugins</groupId>
							<artifactId>maven-project-info-reports-plugin</artifactId>
							<version>2.3.1</version>
							<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>
						</plugin>
						<plugin>
							<groupId>org.apache.maven.plugins</groupId>
							<artifactId>maven-changes-plugin</artifactId>
						</plugin>
						<plugin>
							<groupId>org.codehaus.mojo</groupId>
							<artifactId>cobertura-maven-plugin</artifactId>
							<configuration>
								<formats>
									<format>html</format>
								</formats>
								<encoding>${project.build.sourceEncoding}</encoding>
							</configuration>
						</plugin>
					</reportPlugins>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<archive>
						<manifest>
							<mainClass>de.congrace.exp4j.CommandlineInterpreter</mainClass>
							<packageName>de.congrace.exp4j</packageName>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.2.1</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.4</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>de.congrace</groupId>
   <artifactId>exp4j</artifactId>
   <version>0.3.11</version>
</dependency>

Download

If you think the following exp4j-0.3.11.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download exp4j-0.3.11.jar file




PreviousNext

Related