Ricardo Jun
2018-11-26 571837833dcb889a7fb5389e0e4e0d29032abc9a
commit | author | age
9e7a28 1 <?xml version="1.0" encoding="UTF-8"?>
e57c4c 2 <project
RJ 3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4     xmlns="http://maven.apache.org/POM/4.0.0"
5     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
6     <modelVersion>4.0.0</modelVersion>
7     <groupId>org.acme.insurance</groupId>
8     <artifactId>policyquote</artifactId>
9     <version>1.0</version>
10     <name>policyquote</name>
11
12     <properties>
13         <drools-version>7.5.0.Final-redhat-4</drools-version>
14         <junit-version>4.11</junit-version>
15     </properties>
16
17     <repositories>
18         <repository>
19             <id>RedHat</id>
20             <url>https://maven.repository.redhat.com/ga/</url>
21         </repository>
22     </repositories>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.kie</groupId>
27             <artifactId>kie-api</artifactId>
28             <version>${drools-version}</version>
29         </dependency>
30         <dependency>
31             <groupId>org.drools</groupId>
32             <artifactId>drools-compiler</artifactId>
33             <version>${drools-version}</version>
34
35         </dependency>
36         <dependency>
37             <groupId>junit</groupId>
38             <artifactId>junit</artifactId>
39             <version>${junit-version}</version>
40             <scope>test</scope>
41         </dependency>
42     </dependencies>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.kie</groupId>
48                 <artifactId>kie-maven-plugin</artifactId>
49                 <extensions>true</extensions>
50             </plugin>
51         </plugins>
52     </build>
53
54 </project>