Advertisement
Guest User

Untitled

a guest
Dec 14th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 6.45 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.  
  5.     <groupId>org.openmrs.module</groupId>
  6.     <artifactId>appointmentscheduling</artifactId>
  7.     <version>0.4-SNAPSHOT</version>
  8.     <packaging>pom</packaging>
  9.     <name>Appointment Scheduling Module</name>
  10.     <description>Module for scheduling patient appointments and managing providers schedule</description>
  11.     <url>https://wiki.openmrs.org/display/docs/Appointment+Module+Module</url>
  12.    
  13.     <developers>
  14.         <developer>
  15.             <name>Tobin,Adam,Yonatan</name>
  16.         </developer>
  17.     </developers>
  18.    
  19.     <organization>
  20.         <name>OpenMRS</name>
  21.         <url>http://openmrs.org</url>
  22.     </organization>
  23.  
  24.     <scm>
  25.         <connection>scm:git:https://github.com/openmrs/openmrs-module-appointment.git</connection>
  26.         <developerConnection>scm:git:https://github.com/openmrs/openmrs-module-appointment.git</developerConnection>
  27.         <url>scm:git:https://github.com/openmrs/openmrs-module-appointment.git</url>
  28.        <tag>HEAD</tag>
  29.   </scm>
  30.  
  31.     <distributionManagement>
  32.         <repository>
  33.             <id>openmrs-repo-modules</id>
  34.             <name>Modules</name>
  35.             <url>http://mavenrepo.openmrs.org/nexus/content/repositories/modules/</url>
  36.         </repository>
  37.         <snapshotRepository>
  38.             <id>openmrs-repo-snapshots</id>
  39.             <name>OpenMRS Snapshots</name>
  40.             <url>http://mavenrepo.openmrs.org/nexus/content/repositories/snapshots</url>
  41.         </snapshotRepository>
  42.     </distributionManagement>
  43.  
  44.     <modules>
  45.         <module>api</module>
  46.         <module>omod</module>
  47.     </modules>
  48.    
  49.     <properties>
  50.         <openMRSVersion>1.9.0</openMRSVersion>
  51.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  52.         <appframeworkVersion>2.0</appframeworkVersion>
  53.         <uiframeworkVersion>3.0</uiframeworkVersion>
  54.         <appuiVersion>1.0</appuiVersion>
  55.         <uicommonsVersion>1.0</uicommonsVersion>
  56.     </properties>
  57.  
  58.     <dependencyManagement>
  59.         <dependencies>
  60.        
  61.             <!--
  62.             Libraries to add as dependencies with compile or runtime scope:
  63.             Find matching dependencies in the maven central repository.
  64.             <dependency>
  65.                 <groupId>org.other.library</groupId>
  66.                 <artifactId>library-name</artifactId>
  67.                 <version>library.version</version>
  68.                 <scope>compile</scope>
  69.             </dependency>
  70.             -->
  71.            
  72.            
  73.  
  74.             <!-- Begin OpenMRS core -->
  75.            
  76.             <dependency>
  77.                 <groupId>org.openmrs.api</groupId>
  78.                 <artifactId>openmrs-api</artifactId>
  79.                 <version>${openMRSVersion}</version>
  80.                 <type>jar</type>
  81.                 <scope>provided</scope>
  82.             </dependency>
  83.  
  84.             <dependency>
  85.                 <groupId>org.openmrs.web</groupId>
  86.                 <artifactId>openmrs-web</artifactId>
  87.                 <version>${openMRSVersion}</version>
  88.                 <type>jar</type>
  89.                 <scope>provided</scope>
  90.             </dependency>
  91.                        
  92.             <dependency>
  93.                 <groupId>org.openmrs.api</groupId>
  94.                 <artifactId>openmrs-api</artifactId>
  95.                 <version>${openMRSVersion}</version>
  96.                 <type>test-jar</type>
  97.                 <scope>test</scope>
  98.             </dependency>
  99.            
  100.             <dependency>
  101.                 <groupId>org.openmrs.web</groupId>
  102.                 <artifactId>openmrs-web</artifactId>
  103.                 <version>${openMRSVersion}</version>
  104.                 <type>test-jar</type>
  105.                 <scope>test</scope>
  106.             </dependency>
  107.            
  108.             <dependency>
  109.                 <groupId>org.openmrs.test</groupId>
  110.                 <artifactId>openmrs-test</artifactId>
  111.                 <version>${openMRSVersion}</version>
  112.                 <type>pom</type>
  113.                 <scope>test</scope>
  114.             </dependency>
  115.                        
  116.             <!-- End OpenMRS core -->
  117.            
  118.         <dependency>
  119.             <groupId>org.openmrs.module</groupId>
  120.             <artifactId>uiframework-api</artifactId>
  121.             <version>${uiframeworkVersion}</version>
  122.             <scope>provided</scope>
  123.         </dependency>
  124.        
  125.         <dependency>
  126.             <groupId>org.openmrs.module</groupId>
  127.             <artifactId>uicommons-api</artifactId>
  128.             <version>${uicommonsVersion}</version>
  129.             <scope>provided</scope>
  130.         </dependency>
  131.  
  132.         <dependency>
  133.             <groupId>org.openmrs.module</groupId>
  134.             <artifactId>appui-api</artifactId>
  135.             <version>${appuiVersion}</version>
  136.             <scope>provided</scope>
  137.         </dependency>
  138.  
  139.         <dependency>
  140.             <groupId>org.openmrs.module</groupId>
  141.             <artifactId>appframework-api</artifactId>
  142.             <version>${appframeworkVersion}</version>
  143.             <scope>provided</scope>
  144.         </dependency>
  145.  
  146.         </dependencies>
  147.     </dependencyManagement>
  148.  
  149.     <build>
  150.         <pluginManagement>
  151.             <plugins>
  152.                 <plugin>
  153.                     <groupId>org.apache.maven.plugins</groupId>
  154.                     <artifactId>maven-compiler-plugin</artifactId>
  155.                     <configuration>
  156.                         <target>1.6</target>
  157.                         <source>1.6</source>
  158.                     </configuration>
  159.                 </plugin>
  160.                 <plugin>
  161.                     <groupId>org.openmrs.maven.plugins</groupId>
  162.                     <artifactId>maven-openmrs-plugin</artifactId>
  163.                     <version>1.0.1</version>
  164.                 </plugin>
  165.                 <plugin>
  166.                     <groupId>org.apache.maven.plugins</groupId>
  167.                     <artifactId>maven-dependency-plugin</artifactId>
  168.                     <version>2.4</version>
  169.                 </plugin>
  170.                 <plugin>
  171.                     <groupId>org.apache.maven.plugins</groupId>
  172.                     <artifactId>maven-release-plugin</artifactId>
  173.                     <version>2.4</version>
  174.                 </plugin>
  175.                 <plugin>
  176.                     <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
  177.                     <artifactId>maven-java-formatter-plugin</artifactId>
  178.                     <configuration>
  179.                         <compilerSource>${javaCompilerVersion}</compilerSource>
  180.                         <compilerCompliance>${javaCompilerVersion}</compilerCompliance>
  181.                         <compilerTargetPlatform>${javaCompilerVersion}</compilerTargetPlatform>
  182.                         <configFile>../OpenMRSFormatter.xml</configFile>
  183.                         <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
  184.                         <lineEnding>CRLF</lineEnding>
  185.                     </configuration>
  186.                 </plugin>
  187.             </plugins>
  188.         </pluginManagement>
  189.     </build>
  190.  
  191.     <repositories>
  192.         <repository>
  193.             <id>openmrs-repo</id>
  194.             <name>OpenMRS Nexus Repository</name>
  195.             <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  196.         </repository>
  197.     </repositories>
  198.  
  199.     <pluginRepositories>
  200.         <pluginRepository>
  201.             <id>openmrs-repo</id>
  202.             <name>OpenMRS Nexus Repository</name>
  203.             <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  204.             <snapshots>
  205.                 <enabled>false</enabled>
  206.             </snapshots>
  207.         </pluginRepository>
  208.     </pluginRepositories>
  209.  
  210. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement