Skip to content

Commit 25883f4

Browse files
committed
bom removed
1 parent c05dc2c commit 25883f4

File tree

2 files changed

+71
-50
lines changed

2 files changed

+71
-50
lines changed

hedera-enterprise-bom/pom.xml

Lines changed: 0 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -106,48 +106,6 @@
106106
<build>
107107
<defaultGoal>deploy</defaultGoal>
108108
<plugins>
109-
<plugin>
110-
<groupId>org.apache.maven.plugins</groupId>
111-
<artifactId>maven-javadoc-plugin</artifactId>
112-
<executions>
113-
<execution>
114-
<id>attach-javadocs</id>
115-
<goals>
116-
<goal>jar</goal>
117-
</goals>
118-
<configuration>
119-
<attach>true</attach>
120-
</configuration>
121-
</execution>
122-
</executions>
123-
</plugin>
124-
<plugin>
125-
<groupId>org.apache.maven.plugins</groupId>
126-
<artifactId>maven-source-plugin</artifactId>
127-
<executions>
128-
<execution>
129-
<id>attach-sources</id>
130-
<goals>
131-
<goal>jar</goal>
132-
</goals>
133-
<configuration>
134-
<attach>true</attach>
135-
</configuration>
136-
</execution>
137-
</executions>
138-
</plugin>
139-
<plugin>
140-
<groupId>org.cyclonedx</groupId>
141-
<artifactId>cyclonedx-maven-plugin</artifactId>
142-
<executions>
143-
<execution>
144-
<phase>package</phase>
145-
<goals>
146-
<goal>makeBom</goal>
147-
</goals>
148-
</execution>
149-
</executions>
150-
</plugin>
151109
<plugin>
152110
<groupId>org.apache.maven.plugins</groupId>
153111
<artifactId>maven-deploy-plugin</artifactId>
@@ -157,10 +115,6 @@
157115
<altSnapshotDeploymentRepository>local::file:./target/staging-deploy</altSnapshotDeploymentRepository>
158116
</configuration>
159117
</plugin>
160-
<plugin>
161-
<groupId>org.jreleaser</groupId>
162-
<artifactId>jreleaser-maven-plugin</artifactId>
163-
</plugin>
164118
</plugins>
165119
</build>
166120
</profile>

pom.xml

Lines changed: 71 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,89 @@
3636
<maven.compiler.source>21</maven.compiler.source>
3737
<maven.compiler.target>21</maven.compiler.target>
3838
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39+
<hedera.sdk-version>2.32.0</hedera.sdk-version>
40+
<grpc.version>1.58.0</grpc.version>
41+
<spring.version>6.1.8</spring.version>
42+
<spring.boot.version>3.3.0</spring.boot.version>
43+
<jspecify.version>1.0.0</jspecify.version>
44+
<dotenv.version>3.0.0</dotenv.version>
45+
<junit.version>5.10.3</junit.version>
46+
<slf4j.version>2.0.13</slf4j.version>
3947
</properties>
4048

4149
<dependencyManagement>
4250
<dependencies>
4351
<dependency>
44-
<groupId>${project.groupId}</groupId>
45-
<artifactId>hedera-enterprise-bom</artifactId>
46-
<version>${project.version}</version>
52+
<groupId>org.springframework.boot</groupId>
53+
<artifactId>spring-boot-dependencies</artifactId>
54+
<version>3.3.0</version>
4755
<type>pom</type>
4856
<scope>import</scope>
4957
</dependency>
58+
<dependency>
59+
<groupId>${project.groupId}</groupId>
60+
<artifactId>hedera-base</artifactId>
61+
<version>${project.version}</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>${project.groupId}</groupId>
65+
<artifactId>hedera-spring</artifactId>
66+
<version>${project.version}</version>
67+
</dependency>
68+
<dependency>
69+
<groupId>com.hedera.hashgraph</groupId>
70+
<artifactId>sdk</artifactId>
71+
<version>${hedera.sdk-version}</version>
72+
</dependency>
73+
<dependency>
74+
<groupId>io.grpc</groupId>
75+
<artifactId>grpc-okhttp</artifactId>
76+
<version>${grpc.version}</version>
77+
</dependency>
78+
<dependency>
79+
<groupId>io.grpc</groupId>
80+
<artifactId>grpc-inprocess</artifactId>
81+
<version>${grpc.version}</version>
82+
</dependency>
83+
<dependency>
84+
<groupId>io.grpc</groupId>
85+
<artifactId>grpc-core</artifactId>
86+
<version>${grpc.version}</version>
87+
</dependency>
88+
<dependency>
89+
<groupId>io.grpc</groupId>
90+
<artifactId>grpc-context</artifactId>
91+
<version>${grpc.version}</version>
92+
</dependency>
93+
<dependency>
94+
<groupId>io.grpc</groupId>
95+
<artifactId>grpc-protobuf-lite</artifactId>
96+
<version>${grpc.version}</version>
97+
</dependency>
98+
<dependency>
99+
<groupId>org.jspecify</groupId>
100+
<artifactId>jspecify</artifactId>
101+
<version>${jspecify.version}</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>io.github.cdimascio</groupId>
105+
<artifactId>dotenv-java</artifactId>
106+
<version>${dotenv.version}</version>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.junit.jupiter</groupId>
110+
<artifactId>junit-jupiter</artifactId>
111+
<version>${junit.version}</version>
112+
</dependency>
113+
<dependency>
114+
<groupId>org.slf4j</groupId>
115+
<artifactId>slf4j-api</artifactId>
116+
<version>${slf4j.version}</version>
117+
</dependency>
50118
</dependencies>
51119
</dependencyManagement>
52120

53121
<modules>
54-
<module>hedera-enterprise-bom</module>
55122
<module>hedera-base</module>
56123
<module>hedera-spring</module>
57124
<module>hedera-microprofile</module>

0 commit comments

Comments
 (0)