Skip to content

Commit

Permalink
[Prod Deployment] - Change Package version and merge development bran…
Browse files Browse the repository at this point in the history
…ch in master
  • Loading branch information
pankajjangid05 committed May 8, 2023
1 parent bea29ba commit 3263b94
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Delete package specific version
uses: smartsquaregmbh/delete-old-packages@v0.4.0
with:
version: 2.2.0-SNAPSHOT # This should be same as in the pom.xml file,
version: 2.2.1 # This should be same as in the pom.xml file,
# to delete only the pom specified version, not the other older versions
names: |
com.uci.dao
Expand Down
8 changes: 5 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<name>dao</name>
<description>dao</description>
<packaging>jar</packaging>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.1</version>
<!-- On changing, Set version in deploy.xml to delete the previous packages if exists and deploy new package for the specified version -->

<parent>
Expand All @@ -21,6 +21,8 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<utils.version>2.2.1</utils.version>
<messagerosa.version>2.2.1</messagerosa.version>
</properties>
<!-- For Dao repository to upload to github packages -->
<profiles>
Expand Down Expand Up @@ -99,13 +101,13 @@
<dependency>
<groupId>com.uci</groupId>
<artifactId>message-rosa</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${messagerosa.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.uci</groupId>
<artifactId>utils</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${utils.version}</version>
<scope>compile</scope>
</dependency>

Expand Down

0 comments on commit 3263b94

Please sign in to comment.