1 Star 0 Fork 0

xiaowoniu / drools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 5.74 KB
一键复制 编辑 原始数据 按行查看 历史
<?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.kie</groupId>
<artifactId>kie-parent</artifactId>
<version>7.31.0-SNAPSHOT</version>
<!-- relativePath causes out-of-date problems on hudson slaves -->
<!--<relativePath>../droolsjbpm-build-bootstrap/pom.xml</relativePath>-->
</parent>
<groupId>org.drools</groupId>
<artifactId>drools</artifactId>
<packaging>pom</packaging>
<name>Drools Multiproject</name>
<description>
Drools Expert is the rule engine and Drools Fusion does complex event processing (CEP).
</description>
<properties>
<surefire.forkCount>1</surefire.forkCount>
<alphanetworkCompilerEnabled>false</alphanetworkCompilerEnabled>
</properties>
<repositories>
<!-- Bootstrap repository to locate the parent pom when the parent pom has not been build locally. -->
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
</repositories>
<scm>
<connection>scm:git:https://github.com:kiegroup/drools.git</connection>
<developerConnection>scm:git:git@github.com:kirgroup/drools.git</developerConnection>
<url>https://github.com/kiegroup/drools</url>
</scm>
<modules>
<module>drools-core-reflective</module>
<module>drools-core-dynamic</module>
<module>kie-test-util</module>
<module>drools-beliefs</module>
<module>drools-core</module>
<module>drools-compiler</module>
<module>drools-ruleunit</module>
<module>drools-cdi</module>
<module>drools-verifier</module>
<module>drools-persistence</module>
<module>drools-templates</module>
<module>drools-decisiontables</module>
<module>drools-examples</module>
<module>kie-ci</module>
<module>kie-ci-osgi</module>
<module>drools-model</module>
<module>kie-dmn</module>
<module>kie-pmml</module>
<module>drools-scorecards</module>
<module>drools-examples-api</module>
<module>drools-examples-cdi</module>
<module>drools-workbench-models</module>
<module>drools-test-coverage</module>
<module>drools-scenario-simulation</module>
</modules>
<dependencyManagement>
<!-- Important: Do not add any additional dependency versions here!
The dependency management should only import drools-bom and kie-third-party-bom to get the proper versions
it needs. Any additional 3rd party dependency versions need to go directly into kie-third-party-bom. -->
<dependencies>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-bom</artifactId>
<version>${version.org.kie}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.uberfire</groupId>
<artifactId>uberfire-bom</artifactId>
<version>${version.org.kie}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.kie.soup</groupId>
<artifactId>kie-soup-bom</artifactId>
<version>${version.org.kie}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>${surefire.forkCount}</forkCount>
<reuseForks>true</reuseForks>
<runOrder>hourly</runOrder>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>fullProfile</id>
<activation>
<property>
<name>full</name>
</property>
</activation>
<modules>
<module>drools-distribution</module>
</modules>
</profile>
<profile>
<id>run-code-coverage</id>
<properties>
<jacoco.excludes>*Lexer</jacoco.excludes>
<!-- jacoco.exec.file is defined in kie-parent -->
<!--suppress UnresolvedMavenProperty -->
<jacoco.agent.line>-javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/${version.jacoco.plugin}/org.jacoco.agent-${version.jacoco.plugin}-runtime.jar=destfile=${jacoco.exec.file},append=true,excludes=${jacoco.excludes}</jacoco.agent.line>
<surefire.argLine>
-Dfile.encoding=${project.build.sourceEncoding}
${jacoco.agent.line}
</surefire.argLine>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefire.argLine}</argLine>
</configuration>
<dependencies>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.agent</artifactId>
<version>${version.jacoco.plugin}</version>
<classifier>runtime</classifier>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>
1
https://gitee.com/xiaowoniu168/drools.git
git@gitee.com:xiaowoniu168/drools.git
xiaowoniu168
drools
drools
master

搜索帮助