Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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>
- <groupId>ruleengine</groupId>
- <artifactId>CloudProviderRanker</artifactId>
- <version>0.2</version>
- <properties>
- <droolsVersion>6.3.0.Final</droolsVersion>
- <monitoring.pillar.domain.version>1.8.0-FINAL</monitoring.pillar.domain.version>
- </properties>
- <distributionManagement>
- <!-- Publish versioned releases here -->
- <repository>
- <id>concept-reply-nexus-repository</id>
- <name>Concept Reply Releases Repository</name>
- <url>http://nexusconcept.cloud.reply.eu/content/repositories/releases</url>
- </repository>
- </distributionManagement>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>it.reply</groupId>
- <artifactId>monitoring-pillar-domain</artifactId>
- <version>${monitoring.pillar.domain.version}</version>
- </dependency>
- <dependency>
- <groupId>org.kie</groupId>
- <artifactId>kie-api</artifactId>
- <version>${droolsVersion}</version>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>org.drools</groupId>
- <artifactId>drools-compiler</artifactId>
- <version>${droolsVersion}</version>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>2.6.2</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.5.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.12</version>
- <configuration>
- <systemPropertyVariables>
- <xml.test.config.file>${project.build.directory}/myconfig.xml</xml.test.config.file>
- <log4j.output.file>${project.build.directory}/testsuite.log</log4j.output.file>
- </systemPropertyVariables>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement