Skip to content

Commit

Permalink
Adding SNAPSHOT repository to config-test-parent pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruhanga committed Apr 28, 2023
1 parent 961d385 commit ca25db7
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions integration-tests/src/test/resources/config-test-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<plugin>
<groupId>org.openmrs.maven.plugins</groupId>
<artifactId>openmrs-packager-maven-plugin</artifactId>
<version>1.7.0</version>
<version>1.7.0-SNAPSHOT</version>
<executions>
<execution>
<id>generate-resource-filters</id>
Expand Down Expand Up @@ -44,10 +44,24 @@

<pluginRepositories>
<pluginRepository>
<id>openmrs-repo-releases</id>
<name>OpenMRS Releases Repo</name>
<url>https://openmrs.jfrog.io/artifactory/releases</url>
<id>openmrs-repo</id>
<name>OpenMRS Nexus Repository</name>
<url>https://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<repository>
<id>openmrs-snapshots</id>
<name>OpenMRS Public Repository</name>
<url>https://mavenrepo.openmrs.org/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</pluginRepositories>

</project>

0 comments on commit ca25db7

Please sign in to comment.