Skip to content

Commit

Permalink
release 1.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ddsharpe committed Feb 5, 2025
1 parent b29acb3 commit eb25493
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions bug_release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
# Only use this script when releasing bug fixes (removes SNAPSHOT for version)
set -e
git checkout main

project_version=$(mvn help:evaluate -q -DforceStdout -D"expression=project.version")
Expand All @@ -15,7 +16,7 @@ echo New Version: ${new_version}
mvn versions:set -DremoveSnapshot -DgenerateBackupPoms=false
mvn clean install
git add .
git commit -m \"release ${project_version_number_only}\"
git commit -m "release ${project_version_number_only}"
git push

git tag release-${project_version_number_only}
Expand All @@ -24,6 +25,6 @@ git push origin release-${project_version_number_only}
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=${new_version}
mvn clean install
git add .
git commit -m \"preparing for next development iteration\"
git commit -m "preparing for next development iteration"
git push

2 changes: 1 addition & 1 deletion imagetool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<artifactId>imagetool-parent</artifactId>
<groupId>com.oracle.weblogic.lifecycle.imagetool</groupId>
<version>1.14.4-SNAPSHOT</version>
<version>1.14.4</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion installer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<artifactId>imagetool-parent</artifactId>
<groupId>com.oracle.weblogic.lifecycle.imagetool</groupId>
<version>1.14.4-SNAPSHOT</version>
<version>1.14.4</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.oracle.weblogic.lifecycle.imagetool</groupId>
<artifactId>imagetool-parent</artifactId>
<version>1.14.4-SNAPSHOT</version>
<version>1.14.4</version>
<packaging>pom</packaging>

<name>WebLogic Image Tool</name>
Expand Down
2 changes: 1 addition & 1 deletion tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<artifactId>imagetool-parent</artifactId>
<groupId>com.oracle.weblogic.lifecycle.imagetool</groupId>
<version>1.14.4-SNAPSHOT</version>
<version>1.14.4</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit eb25493

Please sign in to comment.