Advertisement
Guest User

corrected pom.xml

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