Skip to content

Commit

Permalink
build(deps): bump io.cryostat:cryostat-core from 2.29.1 to 2.30.0 (#1886
Browse files Browse the repository at this point in the history
)

* build(deps): bump io.cryostat:cryostat-core from 2.29.1 to 2.30.0

Bumps [io.cryostat:cryostat-core](https://github.com/cryostatio/cryostat-core) from 2.29.1 to 2.30.0.
- [Release notes](https://github.com/cryostatio/cryostat-core/releases)
- [Commits](cryostatio/cryostat-core@v2.29.1...v2.30.0)

---
updated-dependencies:
- dependency-name: io.cryostat:cryostat-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* remove MemoryUsageTypeAdapter

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Azores <[email protected]>
  • Loading branch information
dependabot[bot] and andrewazores authored Mar 1, 2024
1 parent 80683ea commit c3ba751
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 71 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<com.google.dagger.version>2.47</com.google.dagger.version>
<com.google.dagger.compiler.version>${com.google.dagger.version}</com.google.dagger.compiler.version>

<io.cryostat.core.version>2.29.1</io.cryostat.core.version>
<io.cryostat.core.version>2.30.0</io.cryostat.core.version>

<org.openjdk.nashorn.core.version>15.4</org.openjdk.nashorn.core.version>
<org.apache.commons.lang3.version>3.13.0</org.apache.commons.lang3.version>
Expand Down
5 changes: 1 addition & 4 deletions src/main/java/io/cryostat/MainModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package io.cryostat;

import java.lang.management.MemoryUsage;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Set;
Expand Down Expand Up @@ -46,7 +45,6 @@
import io.cryostat.templates.TemplatesModule;
import io.cryostat.util.GsonJmxServiceUrlAdapter;
import io.cryostat.util.HttpMimeTypeAdapter;
import io.cryostat.util.MemoryUsageTypeAdapter;
import io.cryostat.util.PathTypeAdapter;
import io.cryostat.util.PluggableJsonDeserializer;
import io.cryostat.util.PluggableTypeAdapter;
Expand Down Expand Up @@ -133,8 +131,7 @@ public static Gson provideGson(
.registerTypeAdapter(HttpMimeType.class, new HttpMimeTypeAdapter())
.registerTypeHierarchyAdapter(Path.class, new PathTypeAdapter())
.registerTypeAdapter(Rule.class, new RuleDeserializer())
.registerTypeAdapter(ProbeTemplate.class, new ProbeTemplateTypeAdapter())
.registerTypeAdapter(MemoryUsage.class, new MemoryUsageTypeAdapter());
.registerTypeAdapter(ProbeTemplate.class, new ProbeTemplateTypeAdapter());
for (PluggableTypeAdapter<?> pta : extraAdapters) {
builder = builder.registerTypeAdapter(pta.getAdaptedType(), pta);
}
Expand Down
66 changes: 0 additions & 66 deletions src/main/java/io/cryostat/util/MemoryUsageTypeAdapter.java

This file was deleted.

0 comments on commit c3ba751

Please sign in to comment.