-
Notifications
You must be signed in to change notification settings - Fork 14
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
Refactor code to replace component annotations with xml configurations #48
Draft
moshonk
wants to merge
9
commits into
main
Choose a base branch
from
move-annotation-to-xml
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
fd3a55a
chore: Update Maven repository URLs in pom.xml
moshonk 16c4e52
[maven-release-plugin] prepare release 1.4.0
moshonk 83a8f08
chore: Update labonfhir version to 1.4.0-SNAPSHOT
moshonk 3f2e4d7
chore: Update .gitignore to include openmrs.log
moshonk b7f446e
chore: Update Maven repository URLs in pom.xml
moshonk af9dc6d
[maven-release-plugin] prepare release 1.4.1
moshonk 1a1e117
[maven-release-plugin] prepare for next development iteration
moshonk 1c1518e
chore: Add MFL Code as location identifier in LabCreationListener
moshonk e597f18
Refactor code to replace component annotations with xml configurations
moshonk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,4 +80,5 @@ nb-configuration.xml | |
############################## | ||
.DS_Store | ||
|
||
.flattened-pom.xml | ||
.flattened-pom.xml | ||
openmrs.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,10 @@ | |
<url>https://wiki.openmrs.org/x/FQ4z</url> | ||
|
||
<scm> | ||
<connection>scm:git:git@github.com:openmrs/openmrs-module-labonfhir.git</connection> | ||
<developerConnection>scm:git:git@github.com:openmrs/openmrs-module-labonfhir.git</developerConnection> | ||
<url>https://github.com/openmrs/openmrs-module-labonfhir/</url> | ||
<tag>HEAD</tag> | ||
<connection>scm:git:git@bitbucket.org:botswana-emrs/openmrs-module-labonfhir.git</connection> | ||
<developerConnection>scm:git:git@bitbucket.org:botswana-emrs/openmrs-module-labonfhir.git</developerConnection> | ||
<url>https://bitbucket.org/botswana-emrs/openmrs-module-labonfhir</url> | ||
<tag>1.4.0</tag> | ||
</scm> | ||
|
||
<developers> | ||
|
@@ -201,6 +201,11 @@ | |
</build> | ||
|
||
<repositories> | ||
<repository> | ||
<id>repsy</id> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we need this repository here ?? |
||
<name>Maven Repository on Repsy</name> | ||
<url>https://repo.repsy.io/mvn/intellisoftdev/default</url> | ||
</repository> | ||
<repository> | ||
<id>openmrs-repo</id> | ||
<name>OpenMRS Nexus Repository</name> | ||
|
@@ -229,18 +234,16 @@ | |
<id>github-packages</id> | ||
<distributionManagement> | ||
<!-- Deploy to Github Packages --> | ||
<repository> | ||
<id>github-packages</id> | ||
<name>Github Maven Repo</name> | ||
<url>https://maven.pkg.github.com/openmrs/openmrs-module-labonfhir</url> | ||
<uniqueVersion>false</uniqueVersion> | ||
</repository> | ||
<snapshotRepository> | ||
<id>github-packages</id> | ||
<name>Github Maven Repo</name> | ||
<url>https://maven.pkg.github.com/openmrs/openmrs-module-labonfhir</url> | ||
<uniqueVersion>true</uniqueVersion> | ||
<id>repsy</id> | ||
<name>My Private Maven Repository on Repsy</name> | ||
<url>https://repo.repsy.io/mvn/intellisoftdev/default</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>repsy</id> | ||
<name>My Private Maven Repository on Repsy</name> | ||
<url>https://repo.repsy.io/mvn/intellisoftdev/default</url> | ||
</repository> | ||
</distributionManagement> | ||
</profile> | ||
</profiles> | ||
|
@@ -254,4 +257,17 @@ | |
<openmrsPlatformVersion>2.3.1</openmrsPlatformVersion> | ||
<hapifhirVersion>4.2.0</hapifhirVersion> | ||
</properties> | ||
<distributionManagement> | ||
<!-- Deploy to Github Packages --> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @moshonk This is already deployed to OpenMRS Artifactory |
||
<snapshotRepository> | ||
<id>repsy</id> | ||
<name>My Private Maven Repository on Repsy</name> | ||
<url>https://repo.repsy.io/mvn/intellisoftdev/default</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>repsy</id> | ||
<name>My Private Maven Repository on Repsy</name> | ||
<url>https://repo.repsy.io/mvn/intellisoftdev/default</url> | ||
</repository> | ||
</distributionManagement> | ||
</project> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@moshonk do we need this change here??