Skip to content

Instantly share code, notes, and snippets.

@jesuino
Last active April 30, 2021 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesuino/8a825ea02e8f4d5290d0acf8d1d1849c to your computer and use it in GitHub Desktop.
Save jesuino/8a825ea02e8f4d5290d0acf8d1d1849c to your computer and use it in GitHub Desktop.
Minimal Dashbuilder DSL POM
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.kie.dashbuilder</groupId>
<artifactId>countries-population-dashboard</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Countries Population Dashboard</name>
<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.dashbuilder</groupId>
<artifactId>dashbuilder-dsl</artifactId>
<version>7.53.0.Final</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<configuration>
<mainClass>org.kie.dashbuilder.PopulationDashboard</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment