Advertisement
Dileka

api2_pom

Mar 29th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.45 KB | None | 0 0
  1.    <properties>
  2.         <openMRSVersion>2.0.0</openMRSVersion>
  3.         <emrapiVersion>1.16</emrapiVersion>
  4.         <serialization.xstreamVersion>0.2.11</serialization.xstreamVersion>
  5.         <reportingVersion>1.15.0</reportingVersion>
  6.     </properties>
  7.  
  8.     <dependencies>
  9.         <dependency>
  10.             <groupId>${project.parent.groupId}</groupId>
  11.             <artifactId>${project.parent.artifactId}-api</artifactId>
  12.             <version>${project.parent.version}</version>
  13.             <scope>provided</scope>
  14.         </dependency>
  15.  
  16.         <dependency>
  17.             <groupId>${project.parent.groupId}</groupId>
  18.             <artifactId>${project.parent.artifactId}-api-1.11</artifactId>
  19.             <version>${project.parent.version}</version>
  20.             <scope>provided</scope>
  21.         </dependency>
  22.  
  23.         <dependency>
  24.             <groupId>org.openmrs.api</groupId>
  25.             <artifactId>openmrs-api</artifactId>
  26.             <version>${openMRSVersion}</version>
  27.             <scope>provided</scope>
  28.         </dependency>
  29.  
  30.         <dependency>
  31.             <groupId>org.openmrs.api</groupId>
  32.             <artifactId>openmrs-api</artifactId>
  33.             <type>test-jar</type>            
  34.             <version>${openMRSVersion}</version>
  35.             <scope>test</scope>
  36.         </dependency>
  37.  
  38.         <dependency>
  39.             <groupId>org.openmrs.test</groupId>
  40.             <artifactId>openmrs-test</artifactId>
  41.             <version>${openMRSVersion}</version>
  42.             <type>pom</type>
  43.             <scope>test</scope>
  44.         </dependency>
  45.  
  46.         <dependency>
  47.             <groupId>org.openmrs.module</groupId>
  48.             <artifactId>emrapi-api</artifactId>
  49.             <version>${emrapiVersion}</version>
  50.             <scope>provided</scope>
  51.         </dependency>
  52.  
  53.         <dependency>
  54.             <groupId>org.openmrs.module</groupId>
  55.             <artifactId>emrapi-api</artifactId>
  56.             <version>1.12</version>
  57.             <scope>test</scope>
  58.         </dependency>
  59.  
  60.         <dependency>
  61.             <groupId>org.openmrs.module</groupId>
  62.             <artifactId>reporting-api</artifactId>
  63.             <version>${reportingVersion}</version>
  64.             <scope>provided</scope>
  65.         </dependency>
  66.  
  67.         <dependency>
  68.             <groupId>org.openmrs.module</groupId>
  69.             <artifactId>reportingcompatibility-api</artifactId>
  70.             <version>2.0.1</version>
  71.             <scope>test</scope>
  72.         </dependency>
  73.  
  74.         <dependency>
  75.             <groupId>org.openmrs.module</groupId>
  76.             <artifactId>calculation-api</artifactId>
  77.             <version>${calculationVersion}</version>
  78.             <scope>provided</scope>
  79.         </dependency>
  80.  
  81.         <dependency>
  82.             <groupId>org.openmrs.module</groupId>
  83.             <artifactId>serialization.xstream-api</artifactId>
  84.             <version>${serialization.xstreamVersion}</version>
  85.             <scope>provided</scope>
  86.         </dependency>
  87.  
  88.         <dependency>
  89.             <groupId>org.openmrs.module</groupId>
  90.             <artifactId>serialization.xstream-api</artifactId>
  91.             <version>2.0</version>
  92.             <scope>test</scope>
  93.         </dependency>
  94.  
  95.         <dependency>
  96.             <groupId>org.openmrs.module</groupId>
  97.             <artifactId>providermanagement-api</artifactId>
  98.             <version>${providermanagementVersion}</version>
  99.             <scope>provided</scope>
  100.         </dependency>
  101.  
  102.     </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement