Skip to content

Commit 7a67744

Browse files
committed
Add candidate for JMC.
1 parent e5e274f commit 7a67744

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package io.sdkman.changelogs
2+
3+
import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
4+
import com.mongodb.client.MongoDatabase
5+
6+
@ChangeLog(order = "048")
7+
class JdkMissionControlMigrations {
8+
@ChangeSet(
9+
order = "001",
10+
id = "001_add_mission_control",
11+
author = "marc0der"
12+
)
13+
def migration001(implicit db: MongoDatabase) =
14+
Candidate(
15+
candidate = "jmc",
16+
name = "JDK Mission Control",
17+
description =
18+
"Java Flight Recorder and JDK Mission Control together create a complete tool chain to continuously collect " +
19+
"low level and detailed runtime information enabling after-the-fact incident analysis. JDK Mission Control " +
20+
"is an advanced set of tools that enables efficient and detailed analysis of the extensive of data " +
21+
"collected by Java Flight Recorder. The tool chain enables developers and administrators to collect and " +
22+
"analyze data from Java applications running locally or deployed in production environments.",
23+
websiteUrl =
24+
"https://www.oracle.com/java/technologies/jdk-mission-control.html"
25+
).insert()
26+
}

0 commit comments

Comments
 (0)