parent

The parent pom used by projects from fathzer.com.

License

License

GroupId

GroupId

com.fathzer
ArtifactId

ArtifactId

parent-pom
Last Version

Last Version

1.0.4
Release Date

Release Date

Type

Type

pom
Description

Description

parent
The parent pom used by projects from fathzer.com.
Project URL

Project URL

http://www.fathzer.com
Source Code Management

Source Code Management

https://github.com/fathzer/javaluator/tree/master/parent-pom

Download parent-pom

Filename Size
parent-pom-1.0.4.pom 3 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/com.fathzer/parent-pom/ -->
<dependency>
    <groupId>com.fathzer</groupId>
    <artifactId>parent-pom</artifactId>
    <version>1.0.4</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.fathzer/parent-pom/
implementation 'com.fathzer:parent-pom:1.0.4'
// https://jarcasting.com/artifacts/com.fathzer/parent-pom/
implementation ("com.fathzer:parent-pom:1.0.4")
'com.fathzer:parent-pom:pom:1.0.4'
<dependency org="com.fathzer" name="parent-pom" rev="1.0.4">
  <artifact name="parent-pom" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.fathzer', module='parent-pom', version='1.0.4')
)
libraryDependencies += "com.fathzer" % "parent-pom" % "1.0.4"
[com.fathzer/parent-pom "1.0.4"]

Dependencies

test (1)

Group / Artifact Type Version
junit : junit jar 4.13

Project Modules

There are no modules declared in this project.

javaluator

Javadocs Maven Central Quality Gate Status

A java infix evaluator based on "Shunting Yard" algorithm.

Evaluate an arithmetic expression is as simple as:

Double result = new DoubleEvaluator().evaluate("(e^3-1)*sin(pi/4)*ln(pi^2)").

But Javaluator provides you with much more ...

Key features:

  • Functions support, including variable argument count.
  • Constants support: e, pi, etc ...
  • Variables support: Example sin(x) for x = pi/4.
  • Highly configurable: Reduce the built-in operator or function sets, define your own brackets.
  • Extensible: Define your own grammar, or extends the existing one.
  • Localizable: Define localized names for functions or constants.
  • Syntax check
  • Small footprint: 26kB, no additionnal library required.
  • Fully documented

Please visit the project site to learn more : http://javaluator.fathzer.com

If you use Javaluator in your product, we will be happy to add a link to your product in the Javaluator web site

Versions

Version
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0