| <?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"> |
| <parent> |
| <artifactId>drools-multiproject</artifactId> |
| <groupId>org.drools</groupId> |
| <version>5.6.1-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <artifactId>drools-scorecards</artifactId> |
| <name>Drools :: Scorecards</name> |
| <description>Add support for PMML scorecards</description> |
| |
| <dependencies> |
| <!-- Internal dependencies --> |
| <dependency> |
| <groupId>org.drools</groupId> |
| <artifactId>drools-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.drools</groupId> |
| <artifactId>drools-compiler</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.drools</groupId> |
| <artifactId>drools-templates</artifactId> |
| </dependency> |
| |
| <!-- External dependencies --> |
| <dependency> |
| <groupId>org.apache.poi</groupId> |
| <artifactId>poi-ooxml</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.xml.bind</groupId> |
| <artifactId>jaxb-xjc</artifactId> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <version>1.7</version> |
| <executions> |
| <execution> |
| <id>include-generated-sources</id> |
| <goals> |
| <goal>add-source</goal> |
| </goals> |
| <configuration> |
| <sources> |
| <source>${basedir}/target/generated-sources</source> |
| </sources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>jaxb2-maven-plugin</artifactId> |
| <version>1.5</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>xjc</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <outputDirectory>${basedir}/target/generated-sources/java</outputDirectory> |
| <packageName>org.dmg.pmml.pmml_4_1.descr</packageName> |
| <schemaDirectory>${basedir}/src/main/resources/org/dmg/pmml/pmml_4_1/descr</schemaDirectory> |
| <bindingDirectory>${basedir}/src/main/resources/org/dmg/pmml/pmml_4_1/descr</bindingDirectory> |
| <extension>true</extension> |
| <clearOutputDir>false</clearOutputDir> |
| <arguments>-no-header</arguments> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |