|
36 | 36 | <maven.compiler.source>21</maven.compiler.source> |
37 | 37 | <maven.compiler.target>21</maven.compiler.target> |
38 | 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 39 | + |
| 40 | + <hedera.sdk-version>2.32.0</hedera.sdk-version> |
| 41 | + <grpc.version>1.58.0</grpc.version> |
| 42 | + <spring.version>6.1.8</spring.version> |
| 43 | + <spring.boot.version>3.3.0</spring.boot.version> |
| 44 | + <jspecify.version>1.0.0</jspecify.version> |
| 45 | + <dotenv.version>3.0.0</dotenv.version> |
| 46 | + <junit.version>5.10.3</junit.version> |
| 47 | + <slf4j.version>2.0.13</slf4j.version> |
| 48 | + <helidon.version>3.2.10</helidon.version> |
| 49 | + <jakarta.enterprise.version>3.0.1</jakarta.enterprise.version> |
| 50 | + <microprofile.version>7.0</microprofile.version> |
39 | 51 | </properties> |
40 | 52 |
|
41 | 53 | <dependencyManagement> |
42 | 54 | <dependencies> |
43 | 55 | <dependency> |
44 | | - <groupId>${project.groupId}</groupId> |
45 | | - <artifactId>hiero-enterprise-bom</artifactId> |
46 | | - <version>${project.version}</version> |
| 56 | + <groupId>org.springframework.boot</groupId> |
| 57 | + <artifactId>spring-boot-dependencies</artifactId> |
| 58 | + <version>${spring.boot.version}</version> |
47 | 59 | <type>pom</type> |
48 | 60 | <scope>import</scope> |
49 | 61 | </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.eclipse.microprofile</groupId> |
| 64 | + <artifactId>microprofile</artifactId> |
| 65 | + <version>${microprofile.version}</version> |
| 66 | + <scope>import</scope> |
| 67 | + <type>pom</type> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>${project.groupId}</groupId> |
| 71 | + <artifactId>hiero-base</artifactId> |
| 72 | + <version>${project.version}</version> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>${project.groupId}</groupId> |
| 76 | + <artifactId>hiero-spring</artifactId> |
| 77 | + <version>${project.version}</version> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>${project.groupId}</groupId> |
| 81 | + <artifactId>hiero-microprofile</artifactId> |
| 82 | + <version>${project.version}</version> |
| 83 | + </dependency> |
| 84 | + <dependency> |
| 85 | + <groupId>com.hedera.hashgraph</groupId> |
| 86 | + <artifactId>sdk</artifactId> |
| 87 | + <version>${hedera.sdk-version}</version> |
| 88 | + <exclusions> |
| 89 | + <exclusion> |
| 90 | + <groupId>javax.annotation</groupId> |
| 91 | + <artifactId>javax.annotation-api</artifactId> |
| 92 | + </exclusion> |
| 93 | + </exclusions> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>io.grpc</groupId> |
| 97 | + <artifactId>grpc-okhttp</artifactId> |
| 98 | + <version>${grpc.version}</version> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>io.grpc</groupId> |
| 102 | + <artifactId>grpc-inprocess</artifactId> |
| 103 | + <version>${grpc.version}</version> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>io.grpc</groupId> |
| 107 | + <artifactId>grpc-core</artifactId> |
| 108 | + <version>${grpc.version}</version> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>io.grpc</groupId> |
| 112 | + <artifactId>grpc-context</artifactId> |
| 113 | + <version>${grpc.version}</version> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>io.grpc</groupId> |
| 117 | + <artifactId>grpc-protobuf-lite</artifactId> |
| 118 | + <version>${grpc.version}</version> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>org.jspecify</groupId> |
| 122 | + <artifactId>jspecify</artifactId> |
| 123 | + <version>${jspecify.version}</version> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>io.github.cdimascio</groupId> |
| 127 | + <artifactId>dotenv-java</artifactId> |
| 128 | + <version>${dotenv.version}</version> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>org.junit.jupiter</groupId> |
| 132 | + <artifactId>junit-jupiter</artifactId> |
| 133 | + <version>${junit.version}</version> |
| 134 | + </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>org.slf4j</groupId> |
| 137 | + <artifactId>slf4j-api</artifactId> |
| 138 | + <version>${slf4j.version}</version> |
| 139 | + </dependency> |
| 140 | + <dependency> |
| 141 | + <groupId>org.slf4j</groupId> |
| 142 | + <artifactId>slf4j-simple</artifactId> |
| 143 | + <version>${slf4j.version}</version> |
| 144 | + </dependency> |
| 145 | + <dependency> |
| 146 | + <groupId>jakarta.enterprise</groupId> |
| 147 | + <artifactId>jakarta.enterprise.cdi-api</artifactId> |
| 148 | + <version>${jakarta.enterprise.version}</version> |
| 149 | + </dependency> |
| 150 | + <dependency> |
| 151 | + <groupId>io.helidon.microprofile.server</groupId> |
| 152 | + <artifactId>helidon-microprofile-server</artifactId> |
| 153 | + <version>${helidon.version}</version> |
| 154 | + </dependency> |
| 155 | + <dependency> |
| 156 | + <groupId>io.helidon.microprofile.tests</groupId> |
| 157 | + <artifactId>helidon-microprofile-tests-junit5</artifactId> |
| 158 | + <version>${helidon.version}</version> |
| 159 | + </dependency> |
50 | 160 | </dependencies> |
51 | 161 | </dependencyManagement> |
52 | 162 |
|
53 | 163 | <modules> |
54 | | - <module>hiero-enterprise-bom</module> |
55 | 164 | <module>hiero-base</module> |
56 | 165 | <module>hiero-spring</module> |
57 | 166 | <module>hiero-microprofile</module> |
|
0 commit comments