Skip to content

Instantly share code, notes, and snippets.

@DuncanDoyle
Created July 12, 2016 15:31
Show Gist options
  • Select an option

  • Save DuncanDoyle/bacf957ecd58b442fbd6cb7ab099b65d to your computer and use it in GitHub Desktop.

Select an option

Save DuncanDoyle/bacf957ecd58b442fbd6cb7ab099b65d to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>
<groupId>com.redhat</groupId>
<artifactId>coolstore</artifactId>
<version>2.0.0</version>
<packaging>kjar</packaging>
<name>coolstore</name>
<dependencies>
<dependency>
<groupId>org.kie</groupId>
<artifactId>kie-api</artifactId>
<version>6.4.0.Final-redhat-3</version>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>guvnor-m2-repo</id>
<name>Guvnor M2 Repo</name>
<url>http://localhost:8080/business-central/maven2/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.kie</groupId>
<artifactId>kie-maven-plugin</artifactId>
<version>6.4.0.Final-redhat-3</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment