Advertisement
alvise72

Untitled

May 27th, 2016
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.53 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4.   <modelVersion>4.0.0</modelVersion>
  5.  
  6.   <groupId>ruleengine</groupId>
  7.   <artifactId>CloudProviderRanker</artifactId>
  8.   <version>0.2</version>
  9.  
  10.   <properties>
  11.     <droolsVersion>6.3.0.Final</droolsVersion>
  12.     <monitoring.pillar.domain.version>1.8.0-FINAL</monitoring.pillar.domain.version>
  13.   </properties>
  14.  
  15.     <distributionManagement>
  16.     <!-- Publish versioned releases here -->
  17.     <repository>
  18.       <id>concept-reply-nexus-repository</id>
  19.       <name>Concept Reply Releases Repository</name>
  20.       <url>http://nexusconcept.cloud.reply.eu/content/repositories/releases</url>
  21.     </repository>
  22.     </distributionManagement>
  23.  
  24.   <dependencies>
  25.  
  26.     <dependency>    
  27.       <groupId>junit</groupId>
  28.       <artifactId>junit</artifactId>
  29.       <version>4.12</version>
  30.       <scope>test</scope>
  31.     </dependency>
  32.    
  33.     <dependency>
  34.       <groupId>it.reply</groupId>
  35.       <artifactId>monitoring-pillar-domain</artifactId>
  36.       <version>${monitoring.pillar.domain.version}</version>
  37.     </dependency>
  38.  
  39.     <dependency>
  40.       <groupId>org.kie</groupId>
  41.       <artifactId>kie-api</artifactId>
  42.       <version>${droolsVersion}</version>
  43.       <type>pom</type>
  44.     </dependency>
  45.  
  46.     <dependency>
  47.       <groupId>org.drools</groupId>
  48.       <artifactId>drools-compiler</artifactId>
  49.       <version>${droolsVersion}</version>
  50.       <type>pom</type>
  51.     </dependency>
  52.    
  53.     <dependency>
  54.       <groupId>com.google.code.gson</groupId>
  55.       <artifactId>gson</artifactId>
  56.       <version>2.6.2</version>
  57.     </dependency>
  58.  
  59.   </dependencies>
  60.   <build>
  61.   <plugins>
  62.  
  63.         <plugin>
  64.           <groupId>org.apache.maven.plugins</groupId>
  65.           <artifactId>maven-compiler-plugin</artifactId>
  66.           <version>2.5.1</version>
  67.         </plugin>
  68.  
  69.         <plugin>
  70.         <groupId>org.apache.maven.plugins</groupId>
  71.         <artifactId>maven-surefire-plugin</artifactId>
  72.         <version>2.12</version>
  73.         <configuration>
  74.           <systemPropertyVariables>
  75.             <xml.test.config.file>${project.build.directory}/myconfig.xml</xml.test.config.file>
  76.             <log4j.output.file>${project.build.directory}/testsuite.log</log4j.output.file>
  77.           </systemPropertyVariables>
  78.         </configuration>
  79.         </plugin>
  80.   </plugins>
  81.   </build>  
  82. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement