chartfx-samples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.gsi</groupId> <artifactId>chartfx-samples</artifactId> <version>11.2.7</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>de.gsi</groupId> <artifactId>chartfx</artifactId> <version>11.2.7</version> <relativePath>..</relativePath> </parent> <groupId>de.gsi</groupId> <artifactId>chartfx-samples</artifactId> <version>11.2.7</version> <name>chartfx-samples</name> <description>Small sample applications to showcase the features of the chart-fx library.</description> <licenses> <license> <name>LGPLv3</name> <url>https://www.gnu.org/licenses/lgpl-3.0.html</url> </license> </licenses> <properties> <project.moduleName>de.gsi.chartfx.samples</project.moduleName> </properties> <dependencies> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> <version>${chartfx.javafx.version}</version> </dependency> <dependency> <groupId>de.gsi.chart</groupId> <artifactId>chartfx-chart</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>de.gsi.acc</groupId> <artifactId>chartfx-acc</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>de.gsi</groupId> <artifactId>microservice</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${chartfx.slf4j.version}</version> </dependency> <dependency> <groupId>net.jafama</groupId> <artifactId>jafama</artifactId> <version>2.3.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>chart</id> <goals> <goal>java</goal> </goals> <configuration> <mainClass>de.gsi.chart.samples.RunChartSamples</mainClass> </configuration> </execution> <execution> <id>dataset</id> <goals> <goal>java</goal> </goals> <configuration> <mainClass>de.gsi.dataset.samples.RunDataSetSamples</mainClass> </configuration> </execution> <execution> <id>math</id> <goals> <goal>java</goal> </goals> <configuration> <mainClass>de.gsi.math.samples.RunMathSamples</mainClass> </configuration> </execution> <execution> <id>acc-ui</id> <goals> <goal>java</goal> </goals> <configuration> <mainClass>de.gsi.acc.ui.samples.RunUiSamples</mainClass> </configuration> </execution> </executions> <configuration> <skip>false</skip> <mainClass>de.gsi.chart.samples.RunChartSamples</mainClass> </configuration> </plugin> </plugins> </build> </project>