Skip to content

Commit

Permalink
Feature/fix gpg error (#62)
Browse files Browse the repository at this point in the history
* added the nexus-staging-maven-plugin and maven-release-plugin to the pom.xml

* Update pom.xml

* [maven-release-plugin] prepare release beeju-5.0.1

* [maven-release-plugin] prepare for next development iteration

* Update pom.xml

* [maven-release-plugin] prepare release beeju-5.0.1

* Update CHANGELOG.md

* Update pom.xml

---------

Co-authored-by: hjugon <[email protected]>
Co-authored-by: eg-oss-ci <[email protected]>
Co-authored-by: Patrick Duin <[email protected]>
  • Loading branch information
4 people authored Oct 3, 2024
1 parent 3d7911b commit d4d6008
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [5.0.1] - 2024-10-03
### Changed
- Nothing changed, please ignore.

## [5.0.0] - 2021-03-01
### Changed
- Hive version updated to `3.1.2` (was `2.3.7`) and Hadoop version updated to `3.1.0` (was `2.7.2`).
Expand Down
22 changes: 19 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<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>


<parent>
<groupId>com.expediagroup</groupId>
<artifactId>eg-oss-parent</artifactId>
Expand All @@ -11,7 +10,7 @@

<groupId>com.hotels</groupId>
<artifactId>beeju</artifactId>
<version>5.0.1-SNAPSHOT</version>
<version>5.0.2-SNAPSHOT</version>
<inceptionYear>2015</inceptionYear>

<scm>
Expand All @@ -28,6 +27,7 @@
<jdk.version>1.8</jdk.version>
<junit.jupiter.version>5.7.0</junit.jupiter.version>
<junit.platform.version>1.3.2</junit.platform.version>
<maven.release.plugin.version>2.5.3</maven.release.plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -196,6 +196,23 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus.staging.maven.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<stagingProgressTimeoutMinutes>30</stagingProgressTimeoutMinutes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.release.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
Expand All @@ -208,5 +225,4 @@
</plugin>
</plugins>
</build>

</project>

0 comments on commit d4d6008

Please sign in to comment.