Skip to content

Commit

Permalink
push snapshots to github
Browse files Browse the repository at this point in the history
  • Loading branch information
mbuckton committed Oct 30, 2023
1 parent 71b8214 commit 6bd41b7
Showing 1 changed file with 53 additions and 16 deletions.
69 changes: 53 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
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>
<groupId>io.mapsmessaging</groupId>
<artifactId>Extensible_JMS_Selector_Parser</artifactId>
<version>1.1.12</version>
<artifactId>jms_selector_parser</artifactId>
<version>1.1.14-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Extensible JMS Selector Parser</name>
Expand Down Expand Up @@ -73,20 +73,67 @@
<gpg.keyname>matthew.buckton@mapsmessaging.io</gpg.keyname>
</properties>



<profiles>
<profile>
<!-- Default profile for regular releases -->
<id>release</id>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>mapsmessaging.io</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>snapshot</id>
<repositories>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/Maps-Messaging/jms_selector_parser</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>


<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
<id>github</id>
<url>https://maven.pkg.github.com/Maps-Messaging/jms_selector_parser</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>


<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand All @@ -105,17 +152,7 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>mapsmessaging.io</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>


<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 6bd41b7

Please sign in to comment.