From 670c2e1269ed0c4fdc5a2582c00539fc136b335f Mon Sep 17 00:00:00 2001 From: Tim Molter <tim@knowm.org> Date: Wed, 30 Sep 2015 22:14:47 +0200 Subject: [PATCH] pom update --- pom.xml | 20 ++++----- .../xchart/standalone/VectorGraphicsTest.java | 41 ------------------- 2 files changed, 10 insertions(+), 51 deletions(-) delete mode 100644 xchart-demo/src/main/java/com/xeiam/xchart/standalone/VectorGraphicsTest.java diff --git a/pom.xml b/pom.xml index d6259378..f9e49484 100644 --- a/pom.xml +++ b/pom.xml @@ -7,19 +7,19 @@ <packaging>pom</packaging> <name>XChart Parent</name> <description>Basic Charts for Java Applications</description> - <url>http://xeiam.com/xchart.jsp</url> + <url>http://knowm.org/open-source/xchart</url> <inceptionYear>2011</inceptionYear> - <organization> - <name>Xeiam, LLC</name> - <url>http://xeiam.com/</url> - </organization> + <organization> + <name>Knowm Inc.</name> + <url>http://knowm.org/open-source/</url> + </organization> - <developers> - <developer> - <name>Tim Molter</name> - </developer> - </developers> + <developers> + <developer> + <name>Tim Molter</name> + </developer> + </developers> <licenses> <license> diff --git a/xchart-demo/src/main/java/com/xeiam/xchart/standalone/VectorGraphicsTest.java b/xchart-demo/src/main/java/com/xeiam/xchart/standalone/VectorGraphicsTest.java deleted file mode 100644 index 1b059184..00000000 --- a/xchart-demo/src/main/java/com/xeiam/xchart/standalone/VectorGraphicsTest.java +++ /dev/null @@ -1,41 +0,0 @@ -/** - * Copyright 2011 - 2015 Xeiam LLC. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package com.xeiam.xchart.standalone; - -import java.io.IOException; - -import com.xeiam.xchart.Chart; -import com.xeiam.xchart.QuickChart; -import com.xeiam.xchart.VectorGraphicsEncoder; -import com.xeiam.xchart.VectorGraphicsEncoder.VectorGraphicsFormat; - -/** - * @author timmolter - */ -public class VectorGraphicsTest { - - public static void main(String[] args) throws IOException { - - double[] xData = new double[] { 0.0, 1.0, 2.0 }; - double[] yData = new double[] { 2.0, 1.0, 0.0 }; - - // Create Chart - Chart chart = QuickChart.getChart("Sample Chart", "X", "Y", "y(x)", xData, yData); - - VectorGraphicsEncoder.saveVectorGraphic(chart, "", VectorGraphicsFormat.PDF); - } - -} -- GitLab