Skip to content

Commit

Permalink
[BZ-1257739] move kie-maven-plugin from drools repo + add deps to ena…
Browse files Browse the repository at this point in the history
…ble building of all resources OOTB

 * added all the optional deps for user experience. The plugin is now able to build
   every supported resource type

 * using takari libs for plugin testing. See http://takari.io/book/70-testing.html
   for more info

 * removed the "unit" test and using only integration tests as they can be
   spawned in own JVM to eliminate dependency clashes

 * remove redundant example
  • Loading branch information
Petr Siroky authored and mariofusco committed Sep 16, 2015
1 parent 1b082dc commit d5a6b52
Show file tree
Hide file tree
Showing 58 changed files with 2,000 additions and 340 deletions.
45 changes: 0 additions & 45 deletions kie-examples-api/kie-maven-example/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

20 changes: 0 additions & 20 deletions kie-examples-api/kie-maven-example/src/main/resources/logback.xml

This file was deleted.

This file was deleted.

This file was deleted.

29 changes: 0 additions & 29 deletions kie-examples-api/pom.xml

This file was deleted.

File renamed without changes.
40 changes: 40 additions & 0 deletions kie-maven-plugin-example/pom.xml
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.drools</groupId>
<artifactId>droolsjbpm-integration</artifactId>
<version>6.4.0-SNAPSHOT</version>
</parent>

<groupId>org.kie</groupId>
<artifactId>kie-maven-plugin-example</artifactId>

<packaging>kjar</packaging>

<dependencies>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-compiler</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.kie</groupId>
<artifactId>kie-maven-plugin</artifactId>
<version>${project.version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit d5a6b52

Please sign in to comment.