Skip to content

Commit

Permalink
Version 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikebbers committed Dec 4, 2024
1 parent acc2ca6 commit e2447c8
Show file tree
Hide file tree
Showing 161 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this module, you need to add the following dependency to your project:
```xml
<dependency>
<groupId>com.open-elements.hiero</groupId>
<artifactId>hiero-spring</artifactId>
<artifactId>hiero-enterprise-spring</artifactId>
<version>VERSION</version>
</dependency>
```
Expand Down Expand Up @@ -78,7 +78,7 @@ For asynchronous operations, you can easily wrap calls by use the [`@Async` anno

### Hiero Spring Sample

A sample application that uses the Hiero Spring module can be found in the `hiero-spring-sample` module.
A sample application that uses the Hiero Spring module can be found in the `hiero-enterprise-spring-sample` module.
The sample application is a simple Spring Boot application that reads has a REST endpoint at `localhost:8080/` and shows the hbar balance of the account `0.0.100` on the Hedera testnet.
To use the application, you need to have created a Hedera testnet account at the [Hedera portal](https://portal.hedera.com/).
The account information can be added to the `application.properties` file in the `hedera-spring-sample` module:
Expand Down
4 changes: 2 additions & 2 deletions hiero-base/pom.xml → hiero-enterprise-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.open-elements.hiero</groupId>
<artifactId>hiero-enterprise</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>hiero-base</artifactId>
<artifactId>hiero-enterprise-base</artifactId>

<name>Hiero Enterprise Base</name>
<description>Base Library to work with Hiero in Spring and JakartaEE</description>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.open-elements.hiero</groupId>
<artifactId>hiero-enterprise</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>hiero-microprofile-sample</artifactId>
<artifactId>hiero-enterprise-microprofile-sample</artifactId>

<name>Hiero Enterprise Microprofile Sample</name>
<description>Sample for Hiero in Microprofile (by using Quarkus)</description>
Expand All @@ -28,7 +28,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>hiero-microprofile</artifactId>
<artifactId>hiero-enterprise-microprofile</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.open-elements.hiero</groupId>
<artifactId>hiero-enterprise</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>hiero-microprofile</artifactId>
<artifactId>hiero-enterprise-microprofile</artifactId>

<name>Hiero Enterprise Microprofile</name>
<description>Library to work with Hiero in JakartaEE / Microprofile</description>
Expand All @@ -20,7 +20,7 @@
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>hiero-base</artifactId>
<artifactId>hiero-enterprise-base</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile.config</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.open-elements.hiero</groupId>
<artifactId>hiero-enterprise</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>hiero-spring-sample</artifactId>
<artifactId>hiero-enterprise-spring-sample</artifactId>

<name>Hiero Enterprise Spring Sample</name>
<description>Sample for Hiero in Spring</description>
Expand All @@ -24,7 +24,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>hiero-spring</artifactId>
<artifactId>hiero-enterprise-spring</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down
6 changes: 3 additions & 3 deletions hiero-spring/pom.xml → hiero-enterprise-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.open-elements.hiero</groupId>
<artifactId>hiero-enterprise</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>hiero-spring</artifactId>
<artifactId>hiero-enterprise-spring</artifactId>

<name>Hiero Enterprise Spring</name>
<description>Library to work with Hiero in Spring</description>
Expand All @@ -36,7 +36,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>hiero-base</artifactId>
<artifactId>hiero-enterprise-base</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.open-elements.hiero</groupId>
<artifactId>hiero-enterprise</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
<packaging>pom</packaging>

<name>Hiero Enterprise</name>
Expand Down Expand Up @@ -90,17 +90,17 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>hiero-base</artifactId>
<artifactId>hiero-enterprise-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>hiero-spring</artifactId>
<artifactId>hiero-enterprise-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>hiero-microprofile</artifactId>
<artifactId>hiero-enterprise-microprofile</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down Expand Up @@ -188,11 +188,11 @@
</dependencyManagement>

<modules>
<module>hiero-base</module>
<module>hiero-spring</module>
<module>hiero-microprofile</module>
<module>hiero-spring-sample</module>
<module>hiero-microprofile-sample</module>
<module>hiero-enterprise-base</module>
<module>hiero-enterprise-spring</module>
<module>hiero-enterprise-microprofile</module>
<module>hiero-enterprise-spring-sample</module>
<module>hiero-enterprise-microprofile-sample</module>
</modules>

<build>
Expand Down

0 comments on commit e2447c8

Please sign in to comment.