Skip to content

Commit

Permalink
Merge pull request #89 from duncdrum/maintenance_25
Browse files Browse the repository at this point in the history
feat(repo): add gh SNAPSHOT repo
  • Loading branch information
dizzzz authored Jan 10, 2025
2 parents a482ce4 + 6297284 commit 1bf9aee
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -37,8 +39,8 @@
<url>https://www.github.com/exist-db/exist-apps-parent.git</url>
<connection>scm:git:https://www.github.com/exist-db/exist-apps-parent.git</connection>
<developerConnection>scm:git:https://www.github.com/exist-db/exist-apps-parent.git</developerConnection>
<tag>HEAD</tag>
</scm>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/eXist-db/exist-apps-parent/issues</url>
Expand All @@ -53,7 +55,8 @@
<package-abbrev>${project.artifactId}</package-abbrev>
<package-final-name>${project.artifactId}-${project.version}</package-final-name>

<!-- other packages that the documentation (of apps) links to; their `abbrev` must match their expath-pkg.xml -->
<!-- other packages that the documentation (of apps) links to; their `abbrev` must match
their expath-pkg.xml -->
<documentation.pkg.abbrev>exist-documentation</documentation.pkg.abbrev>
<dashboard.pkg.abbrev>dashboard</dashboard.pkg.abbrev>
<demo.pkg.abbrev>demo</demo.pkg.abbrev>
Expand Down Expand Up @@ -299,7 +302,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId> <!-- avoid a bug with GPG plugin hanging http://jira.codehaus.org/browse/MGPG-9 -->
<mavenExecutorId>forked-path</mavenExecutorId> <!-- avoid a bug with GPG plugin
hanging http://jira.codehaus.org/browse/MGPG-9 -->
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
Expand All @@ -312,6 +316,23 @@
<repository>
<id>exist-db</id>
<url>https://repo.evolvedbinary.com/repository/exist-db/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>github</id>
<name>GitHub Registry for Snapshots</name>
<url>https://maven.pkg.github.com/eXist-db/exist</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

Expand All @@ -322,4 +343,4 @@
</pluginRepository>
</pluginRepositories>

</project>
</project>

0 comments on commit 1bf9aee

Please sign in to comment.