drools5-integration-helper-library
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.boretti.drools.integration</groupId> <artifactId>drools5-integration-helper-library</artifactId> <version>1.3.0</version> </dependency>
<!-- /* Drools5 Integration Helper Copyright (C) 2009 Mathieu Boretti mathieu.boretti@gmail.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ --> <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"> <parent> <artifactId>drools5-integration-helper-main</artifactId> <groupId>org.boretti.drools.integration</groupId> <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.boretti.drools.integration</groupId> <artifactId>drools5-integration-helper-library</artifactId> <name>Drools 5 Integration Helper library</name> <version>1.3.0</version> <description> This library provide the various annotations and implementation related to provide access to drools from java. </description> <url>http://www.javaforge.com/proj/doc.do?proj_id=2903</url> <licenses> <license> <name>GPL3</name> <url>http://www.gnu.org/licenses/gpl-3.0.txt</url> </license> </licenses> <issueManagement> <system>CodeBeamer</system> <url>http://www.javaforge.com/project/DroolsHelp/tracker</url> </issueManagement> <scm> <url> http://www.javaforge.com/proj/sources/sccBrowse.do?proj_id=2903 </url> <connection> scm:svn:http://svn.javaforge.com/svn/droolsintegrationhelper </connection> <developerConnection> scm:svn:http://svn.javaforge.com/svn/droolsintegrationhelper </developerConnection> </scm> <developers> <developer> <id>mbo</id> <name>Mathieu Boretti</name> <email>Mathieu.Boretti@gmail.com</email> <roles> <role>architect</role> <role>developer</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-compiler</artifactId> <version>5.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-core</artifactId> <version>5.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> <version>2.5.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>2.5.6</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>make-source</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <source>1.6</source> <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet> <docletArtifact> <groupId>gr.spinellis</groupId> <artifactId>UmlGraph</artifactId> <version>4.6</version> </docletArtifact> <additionalparam> -inferrel -inferdep -quiet -hide java.* -collpackages java.util.* -qualify -postfixpackage -nodefontsize 9 -nodefontpackagesize 7 -link http://java.sun.com/javase/6/docs/api/ -link http://downloads.jboss.com/drools/docs/5.0.1.26597.FINAL/apidocs/ </additionalparam> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>full-test</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <configuration> <debug>false</debug> <showErrors>true</showErrors> <projectsDirectory> src/it </projectsDirectory> <cloneProjectsTo> ${project.build.directory}/it </cloneProjectsTo> </configuration> <executions> <execution> <id>prepare</id> <phase>pre-integration-test</phase> <goals> <goal>install</goal> </goals> <configuration> <localRepositoryPath> ${project.build.directory}/it-cache </localRepositoryPath> </configuration> </execution> <execution> <id>run</id> <phase>integration-test</phase> <goals> <goal>run</goal> </goals> <configuration> <streamLogs>false</streamLogs> <localRepositoryPath> ${project.build.directory}/it-cache </localRepositoryPath> <pomIncludes> <pomInclude> test*/pom.xml </pomInclude> </pomIncludes> <postBuildHookScript> verify.bsh </postBuildHookScript> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>prepare-cache</id> <goals> <goal>copy-resources</goal> </goals> <phase>pre-integration-test</phase> <configuration> <outputDirectory> ${project.build.directory}/it-cache </outputDirectory> <resources> <resource> <directory> ${settings.localRepository} </directory> <includes> <include> org/apache/maven/* </include> <include> org/apache/maven/**/* </include> <include> org/codehaus/plexus/* </include> <include> org/codehaus/plexus/**/* </include> <include> org/codehaus/cargo/* </include> <include> org/codehaus/cargo/**/* </include> <include> org/drools/* </include> <include> org/drools/**/* </include> <include> junit/* </include> <include> junit/**/* </include> <include> plexus/* </include> <include> plexus/**/* </include> <include> org/sonatype/* </include> <include> org/sonatype/**/* </include> <include> log4j/* </include> <include> log4j/**/* </include> <include>asm/*</include> <include> asm/**/* </include> <include> commons-*/* </include> <include> commons-*/**/* </include> </includes> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>