Skip to content

Commit da2b1c5

Browse files
adds dokka support (#126)
1 parent 989d222 commit da2b1c5

7 files changed

Lines changed: 25 additions & 15 deletions

File tree

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.opencds.cqf.cql.ls</groupId>
1414
<artifactId>cql-ls</artifactId>
15-
<version>4.4.0</version>
15+
<version>4.4.1</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

debug/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.opencds.cqf.cql.ls</groupId>
1414
<artifactId>cql-ls</artifactId>
15-
<version>4.4.0</version>
15+
<version>4.4.1</version>
1616
<relativePath>../../pom.xml</relativePath>
1717
</parent>
1818

debug/service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.opencds.cqf.cql.ls</groupId>
1414
<artifactId>cql-ls</artifactId>
15-
<version>4.4.0</version>
15+
<version>4.4.1</version>
1616
<relativePath>../../pom.xml</relativePath>
1717
</parent>
1818

ls/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.opencds.cqf.cql.ls</groupId>
1414
<artifactId>cql-ls</artifactId>
15-
<version>4.4.0</version>
15+
<version>4.4.1</version>
1616
<relativePath>../../pom.xml</relativePath>
1717
</parent>
1818

ls/service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.opencds.cqf.cql.ls</groupId>
1313
<artifactId>cql-ls</artifactId>
14-
<version>4.4.0</version>
14+
<version>4.4.1</version>
1515
<relativePath>../../pom.xml</relativePath>
1616
</parent>
1717

plugin/debug/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.opencds.cqf.cql.ls</groupId>
1313
<artifactId>cql-ls</artifactId>
14-
<version>4.4.0</version>
14+
<version>4.4.1</version>
1515
<relativePath>../../pom.xml</relativePath>
1616
</parent>
1717

pom.xml

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.opencds.cqf.cql.ls</groupId>
66
<artifactId>cql-ls</artifactId>
77
<packaging>pom</packaging>
8-
<version>4.4.0</version>
8+
<version>4.4.1</version>
99

1010
<name>CQL Language Server</name>
1111
<description>A Language Server for CQL implementing the LSP</description>
@@ -399,6 +399,16 @@
399399
<groupId>org.jetbrains.dokka</groupId>
400400
<artifactId>dokka-maven-plugin</artifactId>
401401
<version>1.9.20</version>
402+
<executions>
403+
<execution>
404+
<!-- Generates and attaches a Javadoc JAR for Maven Central -->
405+
<id>attach-javadocs</id>
406+
<phase>verify</phase>
407+
<goals>
408+
<goal>javadocJar</goal>
409+
</goals>
410+
</execution>
411+
</executions>
402412
</plugin>
403413
<plugin>
404414
<groupId>org.apache.maven.plugins</groupId>
@@ -506,8 +516,8 @@
506516
<artifactId>maven-surefire-plugin</artifactId>
507517
</plugin>
508518
<plugin>
509-
<groupId>org.apache.maven.plugins</groupId>
510-
<artifactId>maven-failsafe-plugin</artifactId>
519+
<groupId>org.jetbrains.dokka</groupId>
520+
<artifactId>dokka-maven-plugin</artifactId>
511521
</plugin>
512522
<plugin>
513523
<groupId>org.sonatype.central</groupId>
@@ -532,9 +542,9 @@
532542
<groupId>org.apache.maven.plugins</groupId>
533543
<artifactId>maven-source-plugin</artifactId>
534544
</plugin>
535-
<plugin>
536-
<groupId>org.apache.maven.plugins</groupId>
537-
<artifactId>maven-javadoc-plugin</artifactId>
545+
<plugin>
546+
<groupId>org.jetbrains.dokka</groupId>
547+
<artifactId>dokka-maven-plugin</artifactId>
538548
</plugin>
539549
<plugin>
540550
<groupId>org.jacoco</groupId>
@@ -562,9 +572,9 @@
562572
<groupId>org.apache.maven.plugins</groupId>
563573
<artifactId>maven-source-plugin</artifactId>
564574
</plugin>
565-
<plugin>
566-
<groupId>org.apache.maven.plugins</groupId>
567-
<artifactId>maven-javadoc-plugin</artifactId>
575+
<plugin>
576+
<groupId>org.jetbrains.dokka</groupId>
577+
<artifactId>dokka-maven-plugin</artifactId>
568578
</plugin>
569579
<plugin>
570580
<groupId>org.jacoco</groupId>

0 commit comments

Comments
 (0)