Skip to content

Commit 10ce641

Browse files
committed
Add jQAssistant to SDKMAN (cf. jQAssistant/jqassistant#745)
1 parent b1f1d69 commit 10ce641

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package io.sdkman.changelogs
2+
3+
import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
4+
import com.mongodb.client.MongoDatabase
5+
6+
@ChangeLog(order = "089")
7+
class JqaMigrations {
8+
final val CandidateName = "jqassistant"
9+
10+
@ChangeSet(order = "001", id = "001_add_jqa_2_6_0", author = "ascheman")
11+
def migration001(implicit db: MongoDatabase) = {
12+
Candidate(
13+
candidate = CandidateName,
14+
name = "jQAssistant",
15+
description =
16+
"jQAssistant is an open-source tool for software analytics, enabling you to gain insights into your systems, verify design implementation, and create living documentation. By scanning code and configurations into a Neo4j graph database, it helps maintain software quality and bridge the gap between documentation and implementation.",
17+
websiteUrl = "https://jqassistant.org"
18+
).insert()
19+
val v250 = Version(CandidateName, "2.5.0",
20+
"https://github.com/jQAssistant/jqassistant/releases/download/2.5.0/jqassistant-commandline-neo4jv4-2.5.0-distribution.zip")
21+
val v260 = Version(CandidateName, "2.6.0",
22+
"https://github.com/jQAssistant/jqassistant/releases/download/2.6.0/jqassistant-commandline-neo4jv4-2.6.0-distribution.zip")
23+
List(
24+
v250, v260
25+
).validate().insert()
26+
setCandidateDefault(v260.candidate, v260.version)
27+
}
28+
}

0 commit comments

Comments
 (0)