Skip to content

Commit

Permalink
Retrofit for AntRun 1.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainhalle committed May 7, 2023
1 parent 6c5e220 commit 09e590f
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 16 deletions.
8 changes: 6 additions & 2 deletions Source/Charts/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@

<!-- The project's name -->
<name>Programmatic Spreadsheet - Charts</name>

<targetjdk>8</targetjdk>
<version>0.2</version>
<package>ca/uqac/lif/spreadsheet/charts/</package>

<!-- The project's author. Currently this only
shows up in the footer of the Javadoc documentation. -->
Expand Down Expand Up @@ -63,7 +67,7 @@
<name>Petit Poucet Core</name>
<classname>ca.uqac.lif.petitpoucet.Part</classname>
<files>
<jar>https://github.com/liflab/petitpoucet/releases/download/v2.1-beta3/petitpoucet-core.jar</jar>
<jar>https://github.com/liflab/petitpoucet/releases/download/v2.3/petitpoucet-core-2.3.jar</jar>
</files>
<bundle>false</bundle>
</dependency>
Expand All @@ -74,7 +78,7 @@
<name>Petit Poucet Functions</name>
<classname>ca.uqac.lif.petitpoucet.function.Function</classname>
<files>
<jar>https://github.com/liflab/petitpoucet/releases/download/v2.1-beta3/petitpoucet-functions.jar</jar>
<jar>https://github.com/liflab/petitpoucet/releases/download/v2.3/petitpoucet-functions-2.3.jar</jar>
</files>
<bundle>false</bundle>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@
import ca.uqac.lif.petitpoucet.function.number.Addition;
import ca.uqac.lif.spreadsheet.Cell;
import ca.uqac.lif.spreadsheet.Spreadsheet;
import ca.uqac.lif.spreadsheet.functions.CellFormula;
import ca.uqac.lif.spreadsheet.functions.ValueOf;

public class CellFormulaTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import ca.uqac.lif.petitpoucet.function.NthOutput;
import ca.uqac.lif.spreadsheet.Cell;
import ca.uqac.lif.spreadsheet.Spreadsheet;
import ca.uqac.lif.spreadsheet.functions.ExpandAsColumns;
import ca.uqac.lif.spreadsheet.functions.SpreadsheetFunction.InputCell;

public class ExpandAsColumnsTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import ca.uqac.lif.petitpoucet.function.NthOutput;
import ca.uqac.lif.spreadsheet.Cell;
import ca.uqac.lif.spreadsheet.Spreadsheet;
import ca.uqac.lif.spreadsheet.functions.Merge;

public class MergeTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
*/
package ca.uqac.lif.spreadsheet.chart.gral;

import ca.uqac.lif.petitpoucet.NodeFactory;
import ca.uqac.lif.petitpoucet.Part;
import ca.uqac.lif.petitpoucet.PartNode;
import ca.uqac.lif.petitpoucet.function.RelationNodeFactory;
import ca.uqac.lif.spreadsheet.Spreadsheet;
import ca.uqac.lif.spreadsheet.chart.BoxPlot;
import de.erichseifert.gral.data.DataSource;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
A provenance-aware spreadsheet library
Copyright (C) 2021-2022 Sylvain Hallé
Copyright (C) 2021-2023 Sylvain Hallé
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
Expand All @@ -17,9 +17,9 @@
*/
package ca.uqac.lif.spreadsheet.chart.gral;

import ca.uqac.lif.petitpoucet.NodeFactory;
import ca.uqac.lif.petitpoucet.Part;
import ca.uqac.lif.petitpoucet.PartNode;
import ca.uqac.lif.petitpoucet.function.RelationNodeFactory;
import ca.uqac.lif.spreadsheet.Spreadsheet;
import ca.uqac.lif.spreadsheet.chart.PieChart;
import de.erichseifert.gral.graphics.Insets2D;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
import java.io.IOException;
import java.io.OutputStream;

import ca.uqac.lif.petitpoucet.NodeFactory;
import ca.uqac.lif.petitpoucet.Part;
import ca.uqac.lif.petitpoucet.PartNode;
import ca.uqac.lif.petitpoucet.function.RelationNodeFactory;
import ca.uqac.lif.spreadsheet.Spreadsheet;
import ca.uqac.lif.spreadsheet.chart.Chart;
import ca.uqac.lif.spreadsheet.chart.ChartFormat;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
A provenance-aware spreadsheet library
Copyright (C) 2021-2022 Sylvain Hallé
Copyright (C) 2021-2023 Sylvain Hallé
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
Expand All @@ -17,9 +17,9 @@
*/
package ca.uqac.lif.spreadsheet.chart.gral;

import ca.uqac.lif.petitpoucet.NodeFactory;
import ca.uqac.lif.petitpoucet.Part;
import ca.uqac.lif.petitpoucet.PartNode;
import ca.uqac.lif.petitpoucet.function.RelationNodeFactory;
import ca.uqac.lif.spreadsheet.Spreadsheet;
import ca.uqac.lif.spreadsheet.chart.Scatterplot;
import de.erichseifert.gral.data.DataSeries;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import ca.uqac.lif.petitpoucet.function.InvalidArgumentTypeException;
import ca.uqac.lif.petitpoucet.function.InvalidNumberOfArgumentsException;
import ca.uqac.lif.spreadsheet.Spreadsheet;
import ca.uqac.lif.spreadsheet.functions.Merge;

public class Join extends RelationalOperator
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
A provenance-aware spreadsheet library
Copyright (C) 2021-2022 Sylvain Hallé
Copyright (C) 2021-2023 Sylvain Hallé
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
Expand Down Expand Up @@ -28,6 +28,7 @@
import ca.uqac.lif.petitpoucet.PartNode;
import ca.uqac.lif.petitpoucet.function.AtomicFunction;
import ca.uqac.lif.petitpoucet.function.NthOutput;
import ca.uqac.lif.petitpoucet.function.RelationNodeFactory;
import ca.uqac.lif.spreadsheet.Cell;
import ca.uqac.lif.spreadsheet.Spreadsheet;

Expand Down
5 changes: 3 additions & 2 deletions Source/Units/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@
<name>lif-units</name>
<bundle>false</bundle>
<classname>ca.uqac.lif.units.DimensionValue</classname>
<files>
<jar>https://github.com/liflab/lif-units/releases/download/v1.2/lif-units-1.2.jar
<files> <jar>https://github.com/liflab/lif-units/releases/download/v1.2/lif-units-1.2.jar</jar>
</files>
</dependency>
</dependencies>
</build>

0 comments on commit 09e590f

Please sign in to comment.