Skip to content

Commit

Permalink
HSC-252: Maven Parent: Set the Ozone dependency via Maven property
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuisson committed Apr 25, 2024
1 parent a9e1b6c commit 806917a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions maven-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<ozone.artifactId>ozone</ozone.artifactId>
<ozone.groupId>com.ozonehis</ozone.groupId>
<ozone.version>1.0.0-SNAPSHOT</ozone.version>
</properties>

<dependencies>
<dependency>
<groupId>com.ozonehis</groupId>
<artifactId>ozone</artifactId>
<groupId>${ozone.groupId}</groupId>
<artifactId>${ozone.artifactId}</artifactId>
<type>zip</type>
<version>${ozone.version}</version>
</dependency>
Expand Down

0 comments on commit 806917a

Please sign in to comment.