Advertisement
chughgaurav

pom.xml

Aug 31st, 2011
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.96 KB | None | 0 0
  1. /*
  2. Pom.xml(using Windows)
  3. */
  4. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  6.  
  7. <modelVersion>4.0.0</modelVersion>
  8. <groupId>org.openmrs</groupId>
  9. <artifactId>openmrs</artifactId>
  10. <version>1.9.0-SNAPSHOT</version>
  11. <packaging>pom</packaging>
  12. <name>OpenMRS</name>
  13. <description>Master project for the modules of OpenMRS</description>
  14. <url>http://openmrs.org</url>
  15.  
  16. <issueManagement>
  17. <system>JIRA</system>
  18. <url>http://tickets.openmrs.org/</url>
  19. </issueManagement>
  20.  
  21. <licenses>
  22. <license>
  23. <name>OpenMRS Public License</name>
  24. <url>http://openmrs.org/wiki/License</url>
  25. </license>
  26. </licenses>
  27.  
  28. <organization>
  29. <name>OpenMRS LLC.</name>
  30. <url>http://openmrs.org</url>
  31. </organization>
  32.  
  33. <scm>
  34. <connection>scm:svn:http://svn.openmrs.org/openmrs/trunk/</connection>
  35. <developerConnection>scm:svn:http://svn.openmrs.org/openmrs/trunk/</developerConnection>
  36. <url>http://svn.openmrs.org/openmrs/trunk/</url>
  37. </scm>
  38.  
  39. <modules>
  40. <module>tools</module>
  41. <module>test</module>
  42. <module>api</module>
  43. <module>web</module>
  44. <module>webapp</module>
  45. </modules>
  46.  
  47. <dependencyManagement>
  48. <dependencies>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>servlet-api</artifactId>
  52. <version>2.5</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>javax.servlet</groupId>
  56. <artifactId>jsp-api</artifactId>
  57. <version>2.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>javax.servlet</groupId>
  61. <artifactId>jstl</artifactId>
  62. <version>1.1.2</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>taglibs</groupId>
  66. <artifactId>request</artifactId>
  67. <version>1.0.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>taglibs</groupId>
  71. <artifactId>response</artifactId>
  72. <version>1.0.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>taglibs</groupId>
  76. <artifactId>standard</artifactId>
  77. <version>1.1.2</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>taglibs</groupId>
  81. <artifactId>page</artifactId>
  82. <version>1.0.1</version>
  83. </dependency>
  84.  
  85. <dependency>
  86. <groupId>org.openmrs.directwebremoting</groupId>
  87. <artifactId>dwr</artifactId>
  88. <version>2.0.5-mod</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.velocity</groupId>
  92. <artifactId>velocity</artifactId>
  93. <version>1.6.2</version>
  94. <exclusions>
  95. <exclusion>
  96. <groupId>oro</groupId>
  97. <artifactId>oro</artifactId>
  98. </exclusion>
  99. </exclusions>
  100. </dependency>
  101.  
  102. <dependency>
  103. <groupId>commons-collections</groupId>
  104. <artifactId>commons-collections</artifactId>
  105. <version>3.2</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>commons-io</groupId>
  109. <artifactId>commons-io</artifactId>
  110. <version>1.4</version>
  111. </dependency>
  112.  
  113. <dependency>
  114. <groupId>org.springframework</groupId>
  115. <artifactId>spring-core</artifactId>
  116. <version>${springVersion}</version>
  117. <exclusions>
  118. <exclusion>
  119. <groupId>commons-logging</groupId>
  120. <artifactId>commons-logging</artifactId>
  121. </exclusion>
  122. </exclusions>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework</groupId>
  126. <artifactId>spring-beans</artifactId>
  127. <version>${springVersion}</version>
  128. <exclusions>
  129. <exclusion>
  130. <groupId>commons-logging</groupId>
  131. <artifactId>commons-logging</artifactId>
  132. </exclusion>
  133. </exclusions>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework</groupId>
  137. <artifactId>spring-context</artifactId>
  138. <version>${springVersion}</version>
  139. <exclusions>
  140. <exclusion>
  141. <groupId>commons-logging</groupId>
  142. <artifactId>commons-logging</artifactId>
  143. </exclusion>
  144. </exclusions>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.springframework</groupId>
  148. <artifactId>spring-aop</artifactId>
  149. <version>${springVersion}</version>
  150. <exclusions>
  151. <exclusion>
  152. <groupId>commons-logging</groupId>
  153. <artifactId>commons-logging</artifactId>
  154. </exclusion>
  155. </exclusions>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework</groupId>
  159. <artifactId>spring-orm</artifactId>
  160. <version>${springVersion}</version>
  161. <exclusions>
  162. <exclusion>
  163. <groupId>commons-logging</groupId>
  164. <artifactId>commons-logging</artifactId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.springframework</groupId>
  170. <artifactId>spring-tx</artifactId>
  171. <version>${springVersion}</version>
  172. <exclusions>
  173. <exclusion>
  174. <groupId>commons-logging</groupId>
  175. <artifactId>commons-logging</artifactId>
  176. </exclusion>
  177. </exclusions>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.springframework</groupId>
  181. <artifactId>spring-jdbc</artifactId>
  182. <version>${springVersion}</version>
  183. <exclusions>
  184. <exclusion>
  185. <groupId>commons-logging</groupId>
  186. <artifactId>commons-logging</artifactId>
  187. </exclusion>
  188. </exclusions>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.springframework</groupId>
  192. <artifactId>spring-web</artifactId>
  193. <version>${springVersion}</version>
  194. <exclusions>
  195. <exclusion>
  196. <groupId>commons-logging</groupId>
  197. <artifactId>commons-logging</artifactId>
  198. </exclusion>
  199. </exclusions>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.springframework</groupId>
  203. <artifactId>spring-webmvc</artifactId>
  204. <version>${springVersion}</version>
  205. <exclusions>
  206. <exclusion>
  207. <groupId>commons-logging</groupId>
  208. <artifactId>commons-logging</artifactId>
  209. </exclusion>
  210. </exclusions>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.springframework</groupId>
  214. <artifactId>spring-oxm</artifactId>
  215. <version>${springVersion}</version>
  216. <exclusions>
  217. <exclusion>
  218. <groupId>commons-logging</groupId>
  219. <artifactId>commons-logging</artifactId>
  220. </exclusion>
  221. </exclusions>
  222. </dependency>
  223.  
  224. <!--
  225. For the upgrade to Spring 3.0, antlr-runtime-3.2.jar is required. However, Hibernate 3.25 needs antlr_2.7.6.jar and they can
  226. both exist because their packaging is different. The earlier version, 2.7.6, is antlr.* whereas 3.2 is org.antlr.*, so
  227. they can co-habitate here just fine.
  228. For more information, see this article: http://blog.newsplore.com/2009/03/07/upgrading-to-spring-30
  229. -->
  230. <dependency>
  231. <groupId>org.antlr</groupId>
  232. <artifactId>antlr-runtime</artifactId>
  233. <version>3.2</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>asm</groupId>
  237. <artifactId>asm</artifactId>
  238. <version>2.2.3</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>asm</groupId>
  242. <artifactId>asm-commons</artifactId>
  243. <version>2.2.3</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>asm</groupId>
  247. <artifactId>asm-util</artifactId>
  248. <version>2.2.3</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>cglib</groupId>
  252. <artifactId>cglib-nodep</artifactId>
  253. <version>2.2</version>
  254. </dependency>
  255.  
  256. <dependency>
  257. <groupId>org.openmrs.hibernate</groupId>
  258. <artifactId>hibernate</artifactId>
  259. <version>3.2.5.ga-mod</version>
  260. <exclusions>
  261. <exclusion>
  262. <groupId>asm</groupId>
  263. <artifactId>asm</artifactId>
  264. </exclusion>
  265. <exclusion>
  266. <groupId>commons-logging</groupId>
  267. <artifactId>commons-logging</artifactId>
  268. </exclusion>
  269. <exclusion>
  270. <groupId>asm</groupId>
  271. <artifactId>asm-attrs</artifactId>
  272. </exclusion>
  273. <exclusion>
  274. <groupId>net.sf.ehcache</groupId>
  275. <artifactId>ehcache</artifactId>
  276. </exclusion>
  277. <exclusion>
  278. <groupId>cglib</groupId>
  279. <artifactId>cglib</artifactId>
  280. </exclusion>
  281. </exclusions>
  282. </dependency>
  283. <dependency>
  284. <groupId>org.liquibase</groupId>
  285. <artifactId>liquibase-core</artifactId>
  286. <version>2.0.1</version>
  287. </dependency>
  288.  
  289. <dependency>
  290. <groupId>log4j</groupId>
  291. <artifactId>log4j</artifactId>
  292. <version>1.2.15</version>
  293. <exclusions>
  294. <exclusion>
  295. <groupId>javax.jms</groupId>
  296. <artifactId>jms</artifactId>
  297. </exclusion>
  298. <exclusion>
  299. <groupId>com.sun.jdmk</groupId>
  300. <artifactId>jmxtools</artifactId>
  301. </exclusion>
  302. <exclusion>
  303. <groupId>com.sun.jmx</groupId>
  304. <artifactId>jmxri</artifactId>
  305. </exclusion>
  306. </exclusions>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.slf4j</groupId>
  310. <artifactId>slf4j-api</artifactId>
  311. <version>1.5.6</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>org.slf4j</groupId>
  315. <artifactId>jcl-over-slf4j</artifactId>
  316. <version>1.5.6</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>org.slf4j</groupId>
  320. <artifactId>slf4j-log4j12</artifactId>
  321. <version>1.5.6</version>
  322. <scope>runtime</scope>
  323. </dependency>
  324.  
  325. <dependency>
  326. <groupId>ca.uhn.hapi</groupId>
  327. <artifactId>hapi</artifactId>
  328. <version>0.5</version>
  329. <exclusions>
  330. <exclusion>
  331. <groupId>commons-cli</groupId>
  332. <artifactId>commons-cli</artifactId>
  333. </exclusion>
  334. <exclusion>
  335. <groupId>commons-logging</groupId>
  336. <artifactId>commons-logging</artifactId>
  337. </exclusion>
  338. <exclusion>
  339. <groupId>org.jdom</groupId>
  340. <artifactId>jdom</artifactId>
  341. </exclusion>
  342. <exclusion>
  343. <groupId>xalan</groupId>
  344. <artifactId>xalan</artifactId>
  345. </exclusion>
  346. </exclusions>
  347. </dependency>
  348. <dependency>
  349. <groupId>org.openmrs.simpleframework</groupId>
  350. <artifactId>simple-xml</artifactId>
  351. <version>1.6.1-mod</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>stax</groupId>
  355. <artifactId>stax</artifactId>
  356. <version>1.2.0</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>stax</groupId>
  360. <artifactId>stax-api</artifactId>
  361. <version>1.0.1</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>dom4j</groupId>
  365. <artifactId>dom4j</artifactId>
  366. <version>1.6.1</version>
  367. </dependency>
  368. <dependency>
  369. <groupId>c3p0</groupId>
  370. <artifactId>c3p0</artifactId>
  371. <version>0.9.1</version>
  372. </dependency>
  373. <dependency>
  374. <groupId>com.thoughtworks.xstream</groupId>
  375. <artifactId>xstream</artifactId>
  376. <version>1.3.1</version>
  377. <exclusions>
  378. <exclusion>
  379. <groupId>xpp3</groupId>
  380. <artifactId>xpp3_min</artifactId>
  381. </exclusion>
  382. </exclusions>
  383. </dependency>
  384. <dependency>
  385. <groupId>javax.mail</groupId>
  386. <artifactId>mail</artifactId>
  387. <version>1.4.1</version>
  388. </dependency>
  389. <dependency>
  390. <groupId>xerces</groupId>
  391. <artifactId>xercesImpl</artifactId>
  392. <version>2.8.0</version>
  393. </dependency>
  394. <dependency>
  395. <groupId>xml-apis</groupId>
  396. <artifactId>xml-apis</artifactId>
  397. <version>1.3.03</version>
  398. </dependency>
  399. <dependency>
  400. <groupId>xml-resolver</groupId>
  401. <artifactId>xml-resolver</artifactId>
  402. <version>1.1</version>
  403. <scope>runtime</scope>
  404. </dependency>
  405. <dependency>
  406. <groupId>commons-beanutils</groupId>
  407. <artifactId>commons-beanutils</artifactId>
  408. <version>1.7.0</version>
  409. <exclusions>
  410. <exclusion>
  411. <groupId>commons-logging</groupId>
  412. <artifactId>commons-logging</artifactId>
  413. </exclusion>
  414. </exclusions>
  415. </dependency>
  416. <dependency>
  417. <groupId>commons-fileupload</groupId>
  418. <artifactId>commons-fileupload</artifactId>
  419. <version>1.2.1</version>
  420. </dependency>
  421. <dependency>
  422. <groupId>net.sf.saxon</groupId>
  423. <artifactId>saxon</artifactId>
  424. <version>8.7</version>
  425. </dependency>
  426. <dependency>
  427. <groupId>net.sf.saxon</groupId>
  428. <artifactId>saxon-dom</artifactId>
  429. <version>8.7</version>
  430. </dependency>
  431. <dependency>
  432. <groupId>jfree</groupId>
  433. <artifactId>jfreechart</artifactId>
  434. <version>1.0.12</version>
  435. </dependency>
  436. <dependency>
  437. <groupId>mysql</groupId>
  438. <artifactId>mysql-connector-java</artifactId>
  439. <version>5.1.8</version>
  440. <scope>runtime</scope>
  441. </dependency>
  442. <dependency>
  443. <groupId>org.codehaus.jackson</groupId>
  444. <artifactId>jackson-core-asl</artifactId>
  445. <version>1.5.0</version>
  446. </dependency>
  447. <dependency>
  448. <groupId>org.codehaus.jackson</groupId>
  449. <artifactId>jackson-mapper-asl</artifactId>
  450. <version>1.5.0</version>
  451. </dependency>
  452. <dependency>
  453. <groupId>org.azeckoski</groupId>
  454. <artifactId>reflectutils</artifactId>
  455. <version>0.9.14</version>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.springframework</groupId>
  459. <artifactId>spring-test</artifactId>
  460. <version>${springVersion}</version>
  461. <exclusions>
  462. <exclusion>
  463. <groupId>commons-logging</groupId>
  464. <artifactId>commons-logging</artifactId>
  465. </exclusion>
  466. </exclusions>
  467. </dependency>
  468. <dependency>
  469. <groupId>junit</groupId>
  470. <artifactId>junit</artifactId>
  471. <version>4.8.1</version>
  472. </dependency>
  473. <dependency>
  474. <groupId>org.databene</groupId>
  475. <artifactId>databene-benerator</artifactId>
  476. <version>0.5.9</version>
  477. <exclusions>
  478. <exclusion>
  479. <groupId>hsqldb</groupId>
  480. <artifactId>hsqldb</artifactId>
  481. </exclusion>
  482. </exclusions>
  483. </dependency>
  484. <dependency>
  485. <groupId>com.h2database</groupId>
  486. <artifactId>h2</artifactId>
  487. <version>1.2.135</version>
  488. </dependency>
  489. <dependency>
  490. <groupId>org.dbunit</groupId>
  491. <artifactId>dbunit</artifactId>
  492. <version>2.4.7</version>
  493. </dependency>
  494. <dependency>
  495. <groupId>xmlunit</groupId>
  496. <artifactId>xmlunit</artifactId>
  497. <version>1.3</version>
  498. </dependency>
  499. <dependency>
  500. <groupId>net.sf.ehcache</groupId>
  501. <artifactId>ehcache-core</artifactId>
  502. <version>2.2.0</version>
  503. </dependency>
  504. </dependencies>
  505. </dependencyManagement>
  506.  
  507. <build>
  508. <pluginManagement>
  509. <plugins>
  510. <plugin>
  511. <groupId>org.apache.maven.plugins</groupId>
  512. <artifactId>maven-resources-plugin</artifactId>
  513. <version>2.4</version>
  514. </plugin>
  515. <plugin>
  516. <groupId>org.apache.maven.plugins</groupId>
  517. <artifactId>maven-compiler-plugin</artifactId>
  518. <version>2.1</version>
  519. <configuration>
  520. <target>${javaCompilerVersion}</target>
  521. <source>${javaCompilerVersion}</source>
  522. <encoding>UTF-8</encoding>
  523. </configuration>
  524. </plugin>
  525. <plugin>
  526. <groupId>org.apache.maven.plugins</groupId>
  527. <artifactId>maven-jar-plugin</artifactId>
  528. <configuration>
  529. <archive>
  530. <manifestEntries>
  531. <Build-Timestamp>${TIMESTAMP}</Build-Timestamp>
  532. </manifestEntries>
  533. </archive>
  534. </configuration>
  535. <executions>
  536. <execution>
  537. <goals>
  538. <goal>test-jar</goal>
  539. </goals>
  540. </execution>
  541. </executions>
  542. </plugin>
  543. <plugin>
  544. <groupId>org.codehaus.mojo</groupId>
  545. <artifactId>buildnumber-maven-plugin</artifactId>
  546. <version>1.0</version>
  547. <configuration>
  548. <doCheck>false</doCheck>
  549. <doUpdate>false</doUpdate>
  550. <getRevisionOnlyOnce>true</getRevisionOnlyOnce>
  551. <buildNumberPropertyName>revisionNumber</buildNumberPropertyName>
  552. <revisionOnScmFailure>0</revisionOnScmFailure>
  553. <providerImplementations>
  554. <svn>javasvn</svn>
  555. </providerImplementations>
  556. </configuration>
  557. </plugin>
  558. <plugin>
  559. <groupId>org.apache.maven.plugins</groupId>
  560. <artifactId>maven-javadoc-plugin</artifactId>
  561. <version>2.6.1</version>
  562. </plugin>
  563. <plugin>
  564. <groupId>org.apache.maven.plugins</groupId>
  565. <artifactId>maven-eclipse-plugin</artifactId>
  566. <version>2.8</version>
  567. </plugin>
  568. <plugin>
  569. <groupId>org.codehaus.mojo</groupId>
  570. <artifactId>build-helper-maven-plugin</artifactId>
  571. <version>1.5</version>
  572. </plugin>
  573. <plugin>
  574. <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
  575. <artifactId>maven-java-formatter-plugin</artifactId>
  576. <version>0.3</version>
  577. <configuration>
  578. <compilerSource>${javaCompilerVersion}</compilerSource>
  579. <compilerCompliance>${javaCompilerVersion}</compilerCompliance>
  580. <compilerTargetPlatform>${javaCompilerVersion}</compilerTargetPlatform>
  581. <configFile>eclipse/OpenMRSFormatter.xml</configFile>
  582. <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
  583. <lineEnding>CRLF</lineEnding>
  584. </configuration>
  585. <dependencies>
  586. <dependency>
  587. <groupId>org.openmrs.tools</groupId>
  588. <artifactId>openmrs-tools</artifactId>
  589. <version>${project.version}</version>
  590. </dependency>
  591. </dependencies>
  592. </plugin>
  593. <plugin>
  594. <groupId>org.apache.maven.plugins</groupId>
  595. <artifactId>maven-checkstyle-plugin</artifactId>
  596. <version>2.6</version>
  597. <configuration>
  598. <configLocation>checkstyle/openmrs-checkstyle.xml</configLocation>
  599. <propertiesLocation>checkstyle/openmrs-checkstyle.properties</propertiesLocation>
  600. <headerLocation>checkstyle/license-header.txt</headerLocation>
  601. <suppressionsLocation>checkstyle/checkstyle-suppressions.xml</suppressionsLocation>
  602. </configuration>
  603. <dependencies>
  604. <dependency>
  605. <groupId>org.openmrs.tools</groupId>
  606. <artifactId>openmrs-tools</artifactId>
  607. <version>${project.version}</version>
  608. </dependency>
  609. </dependencies>
  610. </plugin>
  611. <plugin>
  612. <groupId>org.apache.maven.plugins</groupId>
  613. <artifactId>maven-release-plugin</artifactId>
  614. <version>2.1</version>
  615. <configuration>
  616. <preparationGoals>clean install</preparationGoals>
  617. <autoVersionSubmodules>true</autoVersionSubmodules>
  618. </configuration>
  619. </plugin>
  620. </plugins>
  621. </pluginManagement>
  622.  
  623. <plugins>
  624. <plugin>
  625. <groupId>org.codehaus.mojo</groupId>
  626. <artifactId>buildnumber-maven-plugin</artifactId>
  627. <executions>
  628. <execution>
  629. <phase>validate</phase>
  630. <goals>
  631. <goal>create</goal>
  632. </goals>
  633. </execution>
  634. </executions>
  635. </plugin>
  636. <plugin>
  637. <groupId>org.codehaus.mojo</groupId>
  638. <artifactId>build-helper-maven-plugin</artifactId>
  639. <executions>
  640. <execution>
  641. <id>parse-version</id>
  642. <goals>
  643. <goal>parse-version</goal>
  644. </goals>
  645. </execution>
  646. </executions>
  647. </plugin>
  648. <plugin>
  649. <artifactId>maven-assembly-plugin</artifactId>
  650. <version>2.2-beta-5</version>
  651. <configuration>
  652. <descriptorRefs>
  653. <descriptorRef>project</descriptorRef>
  654. </descriptorRefs>
  655. </configuration>
  656. </plugin>
  657. <plugin>
  658. <groupId>org.apache.maven.plugins</groupId>
  659. <artifactId>maven-surefire-plugin</artifactId>
  660. <version>2.5</version>
  661. <configuration>
  662. <argLine>-Duser.language=en -Duser.region=US</argLine>
  663. </configuration>
  664. </plugin>
  665. </plugins>
  666. </build>
  667.  
  668. <dependencies>
  669. <dependency>
  670. <groupId>org.springframework</groupId>
  671. <artifactId>spring-oxm</artifactId>
  672. <version>3.0.5.RELEASE</version>
  673. </dependency>
  674. <dependency>
  675. <groupId>org.grouplens.common</groupId>
  676. <artifactId>javadoc-citation-taglet</artifactId>
  677. <version>0.4</version>
  678. </dependency>
  679. <dependency>
  680. <groupId>org.openmrs.tools</groupId>
  681. <artifactId>openmrs-tools</artifactId>
  682. <version>1.9.0-SNAPSHOT</version>
  683. </dependency>
  684. <dependency>
  685. <groupId>org.openmrs.api</groupId>
  686. <artifactId>openmrs-api</artifactId>
  687. <version>1.9.0-SNAPSHOT</version>
  688. </dependency>
  689. <dependency>
  690. <groupId>org.openmrs.web</groupId>
  691. <artifactId>openmrs-web</artifactId>
  692. <version>1.9.0-SNAPSHOT</version>
  693. </dependency>
  694. <dependency>
  695. <groupId>org.openmrs.web</groupId>
  696. <artifactId>openmrs-webapp</artifactId>
  697. <version>1.9.0-SNAPSHOT</version>
  698. </dependency>
  699. </dependencies>
  700. <reporting>
  701. <plugins>
  702. <!-- docfilessubdirs config set to include image resource -->
  703. <plugin>
  704. <groupId>org.apache.maven.plugins</groupId>
  705. <artifactId>maven-javadoc-plugin</artifactId>
  706. <configuration>
  707. <docfilessubdirs>true</docfilessubdirs>
  708. <bottom>&lt;em&gt;&lt;small&gt; Generated ${TIMESTAMP} NOTE - these libraries are in active
  709. development and subject to change&lt;/small&gt;&lt;/em&gt;</bottom>
  710. <header>&lt;a href=&quot;http://www.openmrs.org&quot;
  711. target=_top&gt;&lt;img
  712. src=&quot;resources/openmrs-logo-small.gif&quot;
  713. border=0/&gt;&lt;/a&gt;</header>
  714. <footer>&lt;a href=&quot;http://www.openmrs.org&quot;
  715. target=_top&gt;${project.name}&lt;/a&gt;</footer>
  716. <taglet>org.openmrs.tools.doclet.ShouldTaglet</taglet>
  717. <tagletArtifact>
  718. <groupId>org.openmrs.tools</groupId>
  719. <artifactId>openmrs-tools</artifactId>
  720. <version>${project.version}</version>
  721. </tagletArtifact>
  722. </configuration>
  723. </plugin>
  724. <plugin>
  725. <groupId>org.codehaus.mojo</groupId>
  726. <artifactId>jxr-maven-plugin</artifactId>
  727. </plugin>
  728. </plugins>
  729. </reporting>
  730.  
  731. <repositories>
  732. <repository>
  733. <id>openmrs-repo</id>
  734. <name>OpenMRS Nexus Repository</name>
  735. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  736. </repository>
  737. </repositories>
  738.  
  739. <pluginRepositories>
  740. <pluginRepository>
  741. <id>openmrs-repo</id>
  742. <name>OpenMRS Nexus Repository</name>
  743. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  744. <snapshots>
  745. <enabled>false</enabled>
  746. </snapshots>
  747. </pluginRepository>
  748. </pluginRepositories>
  749.  
  750. <distributionManagement>
  751. <repository>
  752. <id>openmrs-repo-releases</id>
  753. <name>OpenMRS Nexus Releases</name>
  754. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/releases</url>
  755. </repository>
  756. <snapshotRepository>
  757. <id>openmrs-repo-snapshots</id>
  758. <name>OpenMRS Nexus Snapshots</name>
  759. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/snapshots</url>
  760. </snapshotRepository>
  761. </distributionManagement>
  762.  
  763. <properties>
  764. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  765. <javaCompilerVersion>1.6</javaCompilerVersion>
  766. <maven.build.timestamp.format>MMM dd yyyy hh:mm aa</maven.build.timestamp.format>
  767. <TIMESTAMP>${maven.build.timestamp}</TIMESTAMP>
  768.  
  769. <openmrs.version.long>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion} ${parsedVersion.qualifier} Build ${revisionNumber}</openmrs.version.long>
  770. <openmrs.version.short>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${revisionNumber}-${parsedVersion.qualifier}</openmrs.version.short>
  771. <openmrs.version.shortnumericonly>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${revisionNumber}</openmrs.version.shortnumericonly>
  772.  
  773. <springVersion>3.0.5.RELEASE</springVersion>
  774. </properties>
  775.  
  776. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement