Download JMathPlot-1.0.1.jar file

Introduction

You can download JMathPlot-1.0.1.jar in this page.

License

Open Source

Type List

JMathPlot-1.0.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.yannrichet/JMathPlot/pom.properties
META-INF/maven/com.github.yannrichet/JMathPlot/pom.xml
org.math.plot.DataPanel.class
org.math.plot.DataSelectPanel.class
org.math.plot.DataSelectTable.class
org.math.plot.FrameView.class
org.math.plot.MatrixTablePanel.class
org.math.plot.ParametersPanel.class
org.math.plot.Plot2DPanel.class
org.math.plot.Plot3DPanel.class
org.math.plot.PlotPanel.class
org.math.plot.canvas.Plot2DCanvas.class
org.math.plot.canvas.Plot3DCanvas.class
org.math.plot.canvas.PlotCanvas.class
org.math.plot.components.DataFrame.class
org.math.plot.components.DataToolBar.class
org.math.plot.components.DatasFrame.class
org.math.plot.components.LegendPanel.class
org.math.plot.components.PlotToolBar.class
org.math.plot.components.ScalesFrame.class
org.math.plot.plotObjects.Axis.class
org.math.plot.plotObjects.Base.class
org.math.plot.plotObjects.BaseDependant.class
org.math.plot.plotObjects.BaseLabel.class
org.math.plot.plotObjects.BaseLine.class
org.math.plot.plotObjects.BasePlot.class
org.math.plot.plotObjects.Editable.class
org.math.plot.plotObjects.Label.class
org.math.plot.plotObjects.Line.class
org.math.plot.plotObjects.Noteable.class
org.math.plot.plotObjects.PaintImage.class
org.math.plot.plotObjects.Plotable.class
org.math.plot.plotObjects.RasterImage.class
org.math.plot.plots.BarPlot.class
org.math.plot.plots.BoxPlot2D.class
org.math.plot.plots.BoxPlot3D.class
org.math.plot.plots.CloudPlot2D.class
org.math.plot.plots.CloudPlot3D.class
org.math.plot.plots.DensityLayerPlot.class
org.math.plot.plots.GaussianDensityLayerPlot.class
org.math.plot.plots.GridPlot3D.class
org.math.plot.plots.HistogramPlot2D.class
org.math.plot.plots.HistogramPlot3D.class
org.math.plot.plots.LayerPlot.class
org.math.plot.plots.LinePlot.class
org.math.plot.plots.Plot.class
org.math.plot.plots.QuantileLayerPlot.class
org.math.plot.plots.ScatterPlot.class
org.math.plot.plots.StaircasePlot.class
org.math.plot.plots.VectorLayerPlot.class
org.math.plot.render.AWTDrawer.class
org.math.plot.render.AWTDrawer2D.class
org.math.plot.render.AWTDrawer3D.class
org.math.plot.render.AbstractDrawer.class
org.math.plot.render.Projection.class
org.math.plot.render.Projection2D.class
org.math.plot.render.Projection3D.class
org.math.plot.utils.Array.class
org.math.plot.utils.FastMath.class
org.math.plot.utils.Histogram.class
org.math.plot.utils.NumbersUtils.class
org/math/plot/icons/adjustbounds.png
org/math/plot/icons/back.png
org/math/plot/icons/center.png
org/math/plot/icons/data.png
org/math/plot/icons/edit.png
org/math/plot/icons/noadjustbounds.png
org/math/plot/icons/position.png
org/math/plot/icons/rotation.png
org/math/plot/icons/scale.png
org/math/plot/icons/toclipboard.png
org/math/plot/icons/tofile.png
org/math/plot/icons/topngfile.png
org/math/plot/icons/zoom.png

Pom

JMathPlot-1.0.1.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">
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>9</version>
	</parent>

	<modelVersion>4.0.0</modelVersion>

	<groupId>com.github.yannrichet</groupId>
	<artifactId>JMathPlot</artifactId>
	<version>1.0.1</version>
	<packaging>jar</packaging>
	<name>jmathplot</name>

	<url>https://github.com/yannrichet/jmathplot</url>

	<properties>
	</properties>

	<dependencies>
		<dependency>
			<groupId>com.github.yannrichet</groupId>
			<artifactId>JMathIO</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>com.github.yannrichet</groupId>
			<artifactId>JMathArray</artifactId>
			<version>1.0</version>
		</dependency>
	</dependencies>

	<repositories>
		<repository>
			<id>sonatype-oss-releases</id>
			<url>https://oss.sonatype.org/content/repositories/releases</url>
		</repository>
	</repositories>
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.5</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-install-plugin</artifactId>
				<version>2.5.2</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.4.2</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-no-fork</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.sonatype.plugins</groupId>
				<artifactId>nexus-staging-maven-plugin</artifactId>
				<version>1.6.3</version>
				<extensions>true</extensions>
				<configuration>
					<serverId>ossrh</serverId>
					<nexusUrl>https://oss.sonatype.org/</nexusUrl>
					<autoReleaseAfterClose>true</autoReleaseAfterClose>
				</configuration>
			</plugin>
		</plugins>
		<finalName>jmathplot</finalName>
	</build>

	<scm>
		<connection>scm:git:git@github.com:yannrichet/jmathplot.git</connection>
		<developerConnection>scm:git:git@github.com:yannrichet/jmathplot.git</developerConnection>
		<url>git@github.com:yannrichet/jmathplot.git</url>
	</scm>

	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>
	
</project>

POM Entry

<dependency>
   <groupId>com.github.yannrichet</groupId>
   <artifactId>JMathPlot</artifactId>
   <version>1.0.1</version>
</dependency>

Download

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



Download JMathPlot-1.0.1.jar file




PreviousNext

Related