Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added dependency on modules #1

Merged
merged 2 commits into from
Aug 6, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
added dependency on modules
  • Loading branch information
Krzysztof Kaczmarczyk committed Aug 6, 2014
commit fe66d29ea3f1c3dc95f0c13267adf073172e1ccf
62 changes: 53 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,64 @@
<properties>
<openMRSVersion>1.9.7</openMRSVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<uiframeworkVersion>3.2</uiframeworkVersion>
<appframeworkVersion>2.1</appframeworkVersion>
<uicommonsVersion>1.3-SNAPSHOT</uicommonsVersion>
<emrapiVersion>1.3-SNAPSHOT</emrapiVersion>
<appuiVersion>1.0</appuiVersion>
</properties>

<dependencyManagement>
<dependencies>

<!-- Begin OpenMRS modules -->

<dependency>
<groupId>org.openmrs.module</groupId>
<artifactId>uiframework-api</artifactId>
<version>${uiframeworkVersion}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.openmrs.module</groupId>
<artifactId>appframework-api</artifactId>
<version>${appframeworkVersion}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.openmrs.module</groupId>
<artifactId>emrapi-api-1.9</artifactId>
<version>${emrapiVersion}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.openmrs.module</groupId>
<artifactId>uicommons-api</artifactId>
<version>${uicommonsVersion}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.openmrs.module</groupId>
<artifactId>appui-api</artifactId>
<version>${appuiModuleVersion}</version>
<scope>provided</scope>
</dependency>

<!-- End OpenMRS modules -->

<!--
Libraries to add as dependencies with compile or runtime scope:
Find matching dependencies in the maven central repository.
<dependency>
<groupId>org.other.library</groupId>
<artifactId>library-name</artifactId>
<version>library.version</version>
<scope>compile</scope>
</dependency>
<!--
Libraries to add as dependencies with compile or runtime scope:
Find matching dependencies in the maven central repository.
<dependency>
<groupId>org.other.library</groupId>
<artifactId>library-name</artifactId>
<version>library.version</version>
<scope>compile</scope>
</dependency>
-->


Expand Down