kie-drools-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kie</groupId> <artifactId>kie-drools-archetype</artifactId> <version>8.27.0.Beta</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.kie</groupId> <artifactId>kie-archetypes</artifactId> <version>8.27.0.Beta</version> </parent> <artifactId>kie-drools-archetype</artifactId> <packaging>maven-archetype</packaging> <name>KIE :: Drools Maven Archetype</name> <description> A basic kjar template with Drools rule example, JUnit 4 and logging binding. Use property droolsVersion to specify which version of Drools to use in generated kjar. Use property exampleWithCEP for a CEP rule example and related JUnit test case. Use property pomEclipseCompatible for pom-plug-in settings for Eclipse (will setup org.eclipse.m2e lifecycle-mapping plug-in). </description> <url>http://drools.org</url> <properties> <dollar>$</dollar> </properties> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </pluginManagement> </build> </project>