diff --git a/pom.xml b/pom.xml index d6259378d20b798fde1bac36827e7ca08e29ac36..f9e4948453e30249e81f1ceea0e5a6965e5ced00 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 1b059184f7cef05363200885c7ca27f2e54372c3..0000000000000000000000000000000000000000 --- 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); - } - -}