Advertisement
Guest User

Untitled

a guest
Aug 15th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.65 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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <groupId>org.openmrs</groupId>
  6. <artifactId>standalone</artifactId>
  7. <version>1.1.1</version>
  8. <packaging>jar</packaging>
  9.  
  10. <name>standalone</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <tomcat.version>6.0.26</tomcat.version>
  16. </properties>
  17.  
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.apache.tomcat</groupId>
  21. <artifactId>catalina</artifactId>
  22. <version>${tomcat.version}</version>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.tomcat</groupId>
  27. <artifactId>coyote</artifactId>
  28. <version>${tomcat.version}</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.tomcat</groupId>
  33. <artifactId>jasper</artifactId>
  34. <version>${tomcat.version}</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. <version>5.1.8</version>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-mxj-fixed</artifactId>
  46. <version>5.0.12</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-mxj-db-files-fixed</artifactId>
  52. <version>5.0.12</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. </dependencies>
  56.  
  57. <profiles>
  58. <profile>
  59. <id>default</id> <!-- for 1.9.x and up -->
  60. <activation>
  61. <activeByDefault>true</activeByDefault>
  62. </activation>
  63. <properties>
  64. <liquibasePluginArtifactId>liquibase-maven-plugin</liquibasePluginArtifactId>
  65. <liquibasePluginVersion>2.0.1</liquibasePluginVersion>
  66. <liquibaseDemoDataFileName>liquibase-demo-data.xml</liquibaseDemoDataFileName>
  67. <liquibaseMVPDataFileName>liquibase-mvp-data.xml</liquibaseMVPDataFileName>
  68. <liquibaseDemoDataFollowupFileName>liquibase-empty-changelog.xml</liquibaseDemoDataFollowupFileName>
  69. <liquibaseEmptyDbFollowupFileName>liquibase-empty-changelog.xml</liquibaseEmptyDbFollowupFileName>
  70. </properties>
  71. </profile>
  72. <profile>
  73. <id>1.8.x</id> <!-- activate with -P1.8.x -->
  74. <activation>
  75. <property>
  76. <name>openmrs.version</name>
  77. <value>1.8.4</value> <!-- once this ticket is done we can do this magically: http://jira.codehaus.org/browse/MNG-4777 -->
  78. </property>
  79. </activation>
  80. <properties>
  81. <liquibasePluginArtifactId>liquibase-plugin</liquibasePluginArtifactId>
  82. <liquibasePluginVersion>1.9.5.0</liquibasePluginVersion>
  83. <liquibaseDemoDataFileName>liquibase-demo-data-18x.xml</liquibaseDemoDataFileName>
  84. <liquibaseMVPDataFileName>liquibase-mvp-data-18x.xml</liquibaseMVPDataFileName>
  85. <liquibaseDemoDataFollowupFileName>liquibase-rename-helper-tables-18x.xml</liquibaseDemoDataFollowupFileName>
  86. <liquibaseEmptyDbFollowupFileName>liquibase-rename-helper-tables-18x.xml</liquibaseEmptyDbFollowupFileName>
  87. </properties>
  88. </profile>
  89. </profiles>
  90.  
  91. <build>
  92. <finalName>openmrs-standalone-${openmrs.version}</finalName>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-enforcer-plugin</artifactId>
  97. <executions>
  98. <execution>
  99. <id>enforce-property</id>
  100. <goals>
  101. <goal>enforce</goal>
  102. </goals>
  103. <configuration>
  104. <rules>
  105. <requireProperty>
  106. <property>openmrs.version</property>
  107. <message>openmrs.version property is missing. This should be
  108. something like 1.9.0, 1.8.3, or 1.10-alpha. Add
  109. -Dopenmrs.version=1.9.1. NOTE: If building for 1.8.x, also add
  110. -P1.8.x</message>
  111. </requireProperty>
  112. </rules>
  113. <fail>true</fail>
  114. </configuration>
  115. </execution>
  116. </executions>
  117. </plugin>
  118.  
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-compiler-plugin</artifactId>
  122. <configuration>
  123. <fork>true</fork>
  124. <source>1.6</source>
  125. <target>1.6</target>
  126. </configuration>
  127. </plugin>
  128.  
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-dependency-plugin</artifactId>
  132. <executions>
  133. <execution>
  134. <id>copy</id>
  135. <phase>process-resources</phase>
  136. <goals>
  137. <goal>copy</goal>
  138. </goals>
  139. </execution>
  140. </executions>
  141. <configuration>
  142. <artifactItems>
  143. <artifactItem>
  144. <groupId>org.openmrs.web</groupId>
  145. <artifactId>openmrs-webapp</artifactId>
  146. <version>${openmrs.version}</version>
  147. <type>war</type>
  148. <outputDirectory>target</outputDirectory>
  149. <destFileName>openmrs-standalone.war</destFileName>
  150. </artifactItem>
  151. </artifactItems>
  152. </configuration>
  153. </plugin>
  154.  
  155. <plugin>
  156. <groupId>org.liquibase</groupId>
  157. <artifactId>${liquibasePluginArtifactId}</artifactId>
  158. <executions>
  159. <execution>
  160. <id>empty-db-create-schema</id>
  161. <phase>generate-resources</phase>
  162. <configuration>
  163. <driver>com.mysql.jdbc.Driver</driver>
  164. <changeLogFile>liquibase-schema-only.xml</changeLogFile>
  165. <url><![CDATA[jdbc:mysql:mxj://127.0.0.1:33326/openmrs?autoReconnect=true&sessionVariables=storage_engine=InnoDB&useUnicode=true&characterEncoding=UTF-8&server.initialize-user=true&createDatabaseIfNotExist=true&server.basedir=target/emptydatabase&server.datadir=target/emptydatabase/data&server.collation-server=utf8_general_ci&server.character-set-server=utf8&server.max_allowed_packet=32M]]></url>
  166. <username>openmrs</username>
  167. <password>test</password>
  168. <verbose>true</verbose>
  169. <dropFirst>false</dropFirst>
  170. <systemProperties>
  171. <property>
  172. <name>liquibase.databaseChangeLogTableName</name>
  173. <value>liquibasechangelog</value>
  174. </property>
  175. <property>
  176. <name>liquibase.databaseChangeLogLockTableName</name>
  177. <value>liquibasechangeloglock</value>
  178. </property>
  179. </systemProperties>
  180. </configuration>
  181. <goals>
  182. <goal>update</goal>
  183. </goals>
  184. </execution>
  185. <execution>
  186. <id>empty-db-add-core-data</id>
  187. <phase>generate-resources</phase>
  188. <configuration>
  189. <driver>com.mysql.jdbc.Driver</driver>
  190. <changeLogFile>liquibase-core-data.xml</changeLogFile>
  191. <url><![CDATA[jdbc:mysql:mxj://127.0.0.1:33326/openmrs?autoReconnect=true&sessionVariables=storage_engine=InnoDB&useUnicode=true&characterEncoding=UTF-8&server.initialize-user=true&createDatabaseIfNotExist=true&server.basedir=target/emptydatabase&server.datadir=target/emptydatabase/data&server.collation-server=utf8_general_ci&server.character-set-server=utf8&server.max_allowed_packet=32M]]></url>
  192. <username>openmrs</username>
  193. <password>test</password>
  194. <verbose>true</verbose>
  195. <dropFirst>false</dropFirst>
  196. <systemProperties>
  197. <property>
  198. <name>liquibase.databaseChangeLogTableName</name>
  199. <value>liquibasechangelog</value>
  200. </property>
  201. <property>
  202. <name>liquibase.databaseChangeLogLockTableName</name>
  203. <value>liquibasechangeloglock</value>
  204. </property>
  205. </systemProperties>
  206. </configuration>
  207. <goals>
  208. <goal>update</goal>
  209. </goals>
  210. </execution>
  211. <execution>
  212. <id>empty-db-add-mvp-data</id>
  213. <phase>generate-resources</phase>
  214. <configuration>
  215. <driver>com.mysql.jdbc.Driver</driver>
  216. <changeLogFile>${liquibaseMVPDataFileName}</changeLogFile>
  217. <url><![CDATA[jdbc:mysql:mxj://127.0.0.1:33326/openmrs?autoReconnect=true&sessionVariables=storage_engine=InnoDB&useUnicode=true&characterEncoding=UTF-8&server.initialize-user=true&createDatabaseIfNotExist=true&server.basedir=target/emptydatabase&server.datadir=target/emptydatabase/data&server.collation-server=utf8_general_ci&server.character-set-server=utf8&server.max_allowed_packet=32M]]></url>
  218. <username>openmrs</username>
  219. <password>test</password>
  220. <verbose>true</verbose>
  221. <dropFirst>false</dropFirst>
  222. <systemProperties>
  223. <property>
  224. <name>liquibase.databaseChangeLogTableName</name>
  225. <value>liquibasechangelog</value>
  226. </property>
  227. <property>
  228. <name>liquibase.databaseChangeLogLockTableName</name>
  229. <value>liquibasechangeloglock</value>
  230. </property>
  231. </systemProperties>
  232. </configuration>
  233. <goals>
  234. <goal>update</goal>
  235. </goals>
  236. </execution>
  237. <execution>
  238. <id>empty-db-update-to-latest</id>
  239. <phase>generate-resources</phase>
  240. <configuration>
  241. <driver>com.mysql.jdbc.Driver</driver>
  242. <changeLogFile>liquibase-update-to-latest.xml</changeLogFile>
  243. <url><![CDATA[jdbc:mysql:mxj://127.0.0.1:33326/openmrs?autoReconnect=true&sessionVariables=storage_engine=InnoDB&useUnicode=true&characterEncoding=UTF-8&server.initialize-user=true&createDatabaseIfNotExist=true&server.basedir=target/emptydatabase&server.datadir=target/emptydatabase/data&server.collation-server=utf8_general_ci&server.character-set-server=utf8&server.max_allowed_packet=32M]]></url>
  244. <username>openmrs</username>
  245. <password>test</password>
  246. <verbose>true</verbose>
  247. <dropFirst>false</dropFirst>
  248. <systemProperties>
  249. <property>
  250. <name>liquibase.databaseChangeLogTableName</name>
  251. <value>liquibasechangelog</value>
  252. </property>
  253. <property>
  254. <name>liquibase.databaseChangeLogLockTableName</name>
  255. <value>liquibasechangeloglock</value>
  256. </property>
  257. </systemProperties>
  258. </configuration>
  259. <goals>
  260. <goal>update</goal>
  261. </goals>
  262. </execution>
  263.  
  264. <execution>
  265. <id>empty-db-followup</id>
  266. <phase>generate-resources</phase>
  267. <configuration>
  268. <driver>com.mysql.jdbc.Driver</driver>
  269. <changeLogFile>${liquibaseEmptyDbFollowupFileName}</changeLogFile>
  270. <url><![CDATA[jdbc:mysql:mxj://127.0.0.1:33328/openmrs?autoReconnect=true&sessionVariables=storage_engine=InnoDB&useUnicode=true&characterEncoding=UTF-8&server.initialize-user=true&createDatabaseIfNotExist=true&server.basedir=target/demodatabase&server.datadir=target/demodatabase/data&server.collation-server=utf8_general_ci&server.character-set-server=utf8&server.max_allowed_packet=32M]]></url>
  271. <username>openmrs</username>
  272. <password>test</password>
  273. <verbose>true</verbose>
  274. <dropFirst>false</dropFirst>
  275. <systemProperties>
  276. <property>
  277. <name>liquibase.databaseChangeLogTableName</name>
  278. <value>liquibasechangelog</value>
  279. </property>
  280. <property>
  281. <name>liquibase.databaseChangeLogLockTableName</name>
  282. <value>liquibasechangeloglock</value>
  283. </property>
  284. </systemProperties>
  285. </configuration>
  286. <goals>
  287. <goal>update</goal>
  288. </goals>
  289. </execution>
  290.  
  291. <execution>
  292. <id>demo-db-add-data</id>
  293. <phase>generate-resources</phase>
  294. <configuration>
  295. <driver>com.mysql.jdbc.Driver</driver>
  296. <changeLogFile>${liquibaseDemoDataFileName}</changeLogFile>
  297. <url><![CDATA[jdbc:mysql:mxj://127.0.0.1:33328/openmrs?autoReconnect=true&sessionVariables=storage_engine=InnoDB&useUnicode=true&characterEncoding=UTF-8&server.initialize-user=true&createDatabaseIfNotExist=true&server.basedir=target/demodatabase&server.datadir=target/demodatabase/data&server.collation-server=utf8_general_ci&server.character-set-server=utf8&server.max_allowed_packet=32M]]></url>
  298. <username>openmrs</username>
  299. <password>test</password>
  300. <verbose>true</verbose>
  301. <dropFirst>false</dropFirst>
  302. <systemProperties>
  303. <property>
  304. <name>liquibase.databaseChangeLogTableName</name>
  305. <value>liquibasechangelog</value>
  306. </property>
  307. <property>
  308. <name>liquibase.databaseChangeLogLockTableName</name>
  309. <value>liquibasechangeloglock</value>
  310. </property>
  311. </systemProperties>
  312. </configuration>
  313. <goals>
  314. <goal>update</goal>
  315. </goals>
  316. </execution>
  317. <execution>
  318. <id>demo-db-update-to-latest</id>
  319. <phase>generate-resources</phase>
  320. <configuration>
  321. <driver>com.mysql.jdbc.Driver</driver>
  322. <changeLogFile>liquibase-update-to-latest.xml</changeLogFile>
  323. <url><![CDATA[jdbc:mysql:mxj://127.0.0.1:33328/openmrs?autoReconnect=true&sessionVariables=storage_engine=InnoDB&useUnicode=true&characterEncoding=UTF-8&server.initialize-user=true&createDatabaseIfNotExist=true&server.basedir=target/demodatabase&server.datadir=target/demodatabase/data&server.collation-server=utf8_general_ci&server.character-set-server=utf8&server.max_allowed_packet=32M]]></url>
  324. <username>openmrs</username>
  325. <password>test</password>
  326. <verbose>true</verbose>
  327. <dropFirst>false</dropFirst>
  328. <systemProperties>
  329. <property>
  330. <name>liquibase.databaseChangeLogTableName</name>
  331. <value>liquibasechangelog</value>
  332. </property>
  333. <property>
  334. <name>liquibase.databaseChangeLogLockTableName</name>
  335. <value>liquibasechangeloglock</value>
  336. </property>
  337. </systemProperties>
  338. </configuration>
  339. <goals>
  340. <goal>update</goal>
  341. </goals>
  342. </execution>
  343. <execution>
  344. <id>demo-db-followup</id>
  345. <phase>generate-resources</phase>
  346. <configuration>
  347. <driver>com.mysql.jdbc.Driver</driver>
  348. <changeLogFile>${liquibaseDemoDataFollowupFileName}</changeLogFile>
  349. <url><![CDATA[jdbc:mysql:mxj://127.0.0.1:33328/openmrs?autoReconnect=true&sessionVariables=storage_engine=InnoDB&useUnicode=true&characterEncoding=UTF-8&server.initialize-user=true&createDatabaseIfNotExist=true&server.basedir=target/demodatabase&server.datadir=target/demodatabase/data&server.collation-server=utf8_general_ci&server.character-set-server=utf8&server.max_allowed_packet=32M]]></url>
  350. <username>openmrs</username>
  351. <password>test</password>
  352. <verbose>true</verbose>
  353. <dropFirst>false</dropFirst>
  354. <systemProperties>
  355. <property>
  356. <name>liquibase.databaseChangeLogTableName</name>
  357. <value>liquibasechangelog</value>
  358. </property>
  359. <property>
  360. <name>liquibase.databaseChangeLogLockTableName</name>
  361. <value>liquibasechangeloglock</value>
  362. </property>
  363. </systemProperties>
  364. </configuration>
  365. <goals>
  366. <goal>update</goal>
  367. </goals>
  368. </execution>
  369. </executions>
  370. </plugin>
  371.  
  372. <plugin>
  373. <groupId>org.codehaus.mojo</groupId>
  374. <artifactId>exec-maven-plugin</artifactId>
  375. <executions>
  376. <execution>
  377. <phase>prepare-package</phase>
  378. <goals>
  379. <goal>java</goal>
  380. </goals>
  381. <configuration>
  382. <mainClass>org.openmrs.standalone.StopEmbeddedMySQL</mainClass>
  383. <arguments>
  384. <argument>target/emptydatabase</argument>
  385. <argument>target/demodatabase</argument>
  386. </arguments>
  387. </configuration>
  388. </execution>
  389. </executions>
  390. </plugin>
  391.  
  392. <plugin>
  393. <groupId>org.apache.maven.plugins</groupId>
  394. <artifactId>maven-assembly-plugin</artifactId>
  395. <executions>
  396. <execution>
  397. <id>package-jar-with-dependencies</id>
  398. <phase>package</phase>
  399. <goals>
  400. <goal>single</goal>
  401. </goals>
  402. <configuration>
  403. <finalName>openmrs-standalone</finalName>
  404. <appendAssemblyId>false</appendAssemblyId>
  405. <descriptorRefs>
  406. <descriptorRef>jar-with-dependencies</descriptorRef>
  407. </descriptorRefs>
  408. <archive>
  409. <manifest>
  410. <mainClass>org.openmrs.standalone.Bootstrap</mainClass>
  411. </manifest>
  412. </archive>
  413. </configuration>
  414. </execution>
  415. <execution>
  416. <id>zip-demo-data</id>
  417. <phase>package</phase>
  418. <goals>
  419. <goal>single</goal>
  420. </goals>
  421. <configuration>
  422. <finalName>demodatabase</finalName>
  423. <appendAssemblyId>false</appendAssemblyId>
  424. <descriptors>
  425. <descriptor>src/main/assembly/zip-demo-data.xml</descriptor>
  426. </descriptors>
  427. </configuration>
  428. </execution>
  429. <execution>
  430. <id>zip-mvp-data</id>
  431. <phase>package</phase>
  432. <goals>
  433. <goal>single</goal>
  434. </goals>
  435. <configuration>
  436. <finalName>emptydatabase</finalName>
  437. <appendAssemblyId>false</appendAssemblyId>
  438. <descriptors>
  439. <descriptor>src/main/assembly/zip-mvp-data.xml</descriptor>
  440. </descriptors>
  441. </configuration>
  442. </execution>
  443. <execution>
  444. <id>zip-standalone</id>
  445. <phase>package</phase>
  446. <goals>
  447. <goal>single</goal>
  448. </goals>
  449. <configuration>
  450. <finalName>openmrs-standalone-${openmrs.version}</finalName>
  451. <appendAssemblyId>false</appendAssemblyId>
  452. <descriptors>
  453. <descriptor>src/main/assembly/zip-standalone.xml</descriptor>
  454. </descriptors>
  455. </configuration>
  456. </execution>
  457. </executions>
  458. </plugin>
  459. </plugins>
  460.  
  461. <pluginManagement>
  462. <plugins>
  463. <plugin>
  464. <groupId>org.apache.maven.plugins</groupId>
  465. <artifactId>maven-enforcer-plugin</artifactId>
  466. <version>1.0</version>
  467. </plugin>
  468. <plugin>
  469. <groupId>org.apache.maven.plugins</groupId>
  470. <artifactId>maven-compiler-plugin</artifactId>
  471. <version>2.3.2</version>
  472. </plugin>
  473. <plugin>
  474. <groupId>org.apache.maven.plugins</groupId>
  475. <artifactId>maven-dependency-plugin</artifactId>
  476. <version>2.3</version>
  477. <dependencies>
  478. <dependency>
  479. <groupId>org.openmrs.web</groupId>
  480. <artifactId>openmrs-webapp</artifactId>
  481. <version>${openmrs.version}</version>
  482. <type>war</type>
  483. <scope>compile</scope>
  484. </dependency>
  485. </dependencies>
  486. </plugin>
  487. <plugin>
  488. <groupId>org.liquibase</groupId>
  489. <artifactId>${liquibasePluginArtifactId}</artifactId>
  490. <version>${liquibasePluginVersion}</version>
  491. <dependencies>
  492. <dependency>
  493. <groupId>org.openmrs.api</groupId>
  494. <artifactId>openmrs-api</artifactId>
  495. <version>${openmrs.version}</version>
  496. <type>jar</type>
  497. <scope>compile</scope>
  498. </dependency>
  499. <dependency>
  500. <groupId>org.openmrs.liquibase.ext</groupId>
  501. <artifactId>modify-column</artifactId>
  502. <version>2.0.2</version>
  503. </dependency>
  504. <dependency>
  505. <groupId>org.openmrs.liquibase.ext</groupId>
  506. <artifactId>identity-insert</artifactId>
  507. <version>1.2.1</version>
  508. </dependency>
  509. </dependencies>
  510. </plugin>
  511. <plugin>
  512. <groupId>org.codehaus.mojo</groupId>
  513. <artifactId>exec-maven-plugin</artifactId>
  514. <version>1.2.1</version>
  515. </plugin>
  516. <plugin>
  517. <groupId>org.apache.maven.plugins</groupId>
  518. <artifactId>maven-assembly-plugin</artifactId>
  519. <version>2.3</version>
  520. </plugin>
  521.  
  522. <!--This plugin's configuration is used to store Eclipse m2e settings
  523. only. It has no influence on the Maven build itself. -->
  524. <plugin>
  525. <groupId>org.eclipse.m2e</groupId>
  526. <artifactId>lifecycle-mapping</artifactId>
  527. <version>1.0.0</version>
  528. <configuration>
  529. <lifecycleMappingMetadata>
  530. <pluginExecutions>
  531. <pluginExecution>
  532. <pluginExecutionFilter>
  533. <groupId>org.liquibase</groupId>
  534. <artifactId>
  535. liquibase-maven-plugin
  536. </artifactId>
  537. <versionRange>
  538. [2.0.1,)
  539. </versionRange>
  540. <goals>
  541. <goal>update</goal>
  542. </goals>
  543. </pluginExecutionFilter>
  544. <action>
  545. <ignore></ignore>
  546. </action>
  547. </pluginExecution>
  548. <pluginExecution>
  549. <pluginExecutionFilter>
  550. <groupId>
  551. org.apache.maven.plugins
  552. </groupId>
  553. <artifactId>
  554. maven-dependency-plugin
  555. </artifactId>
  556. <versionRange>
  557. [2.3,)
  558. </versionRange>
  559. <goals>
  560. <goal>copy</goal>
  561. </goals>
  562. </pluginExecutionFilter>
  563. <action>
  564. <ignore></ignore>
  565. </action>
  566. </pluginExecution>
  567. <pluginExecution>
  568. <pluginExecutionFilter>
  569. <groupId>
  570. org.codehaus.mojo
  571. </groupId>
  572. <artifactId>
  573. exec-maven-plugin
  574. </artifactId>
  575. <versionRange>
  576. [1.2.1,)
  577. </versionRange>
  578. <goals>
  579. <goal>java</goal>
  580. </goals>
  581. </pluginExecutionFilter>
  582. <action>
  583. <ignore></ignore>
  584. </action>
  585. </pluginExecution>
  586. </pluginExecutions>
  587. </lifecycleMappingMetadata>
  588. </configuration>
  589. </plugin>
  590. </plugins>
  591. </pluginManagement>
  592. </build>
  593.  
  594. <repositories>
  595. <repository>
  596. <id>openmrs-repo</id>
  597. <name>OpenMRS Nexus Repository</name>
  598. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  599. </repository>
  600. </repositories>
  601.  
  602. <pluginRepositories>
  603. <pluginRepository>
  604. <id>openmrs-repo</id>
  605. <name>OpenMRS Nexus Repository</name>
  606. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  607. <snapshots>
  608. <enabled>false</enabled>
  609. </snapshots>
  610. </pluginRepository>
  611. </pluginRepositories>
  612.  
  613. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement