Skip to content

Commit 6648464

Browse files
committed
Fix dependency declaration for vertx-docgen-processor
1 parent 838a8b0 commit 6648464

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.7.17
1+
version = 3.8.3
22
runner.dialect = scala3
33
align.preset = more
44
align.multiline = true

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@
4242
<dependencies>
4343
<dependency>
4444
<groupId>io.vertx</groupId>
45-
<artifactId>vertx-stack-depchain</artifactId>
45+
<artifactId>vertx-dependencies</artifactId>
4646
<version>${project.version}</version>
4747
<type>pom</type>
4848
<scope>import</scope>
4949
</dependency>
5050
<dependency>
5151
<groupId>io.vertx</groupId>
52-
<artifactId>vertx-docgen</artifactId>
53-
<version>0.9.4</version>
52+
<artifactId>vertx-docgen-processor</artifactId>
53+
<version>0.9.8</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>org.scala-lang</groupId>

vertx-lang-scala-codegen/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

77
<parent>
@@ -21,12 +21,12 @@
2121
</dependency>
2222
<dependency>
2323
<groupId>io.vertx</groupId>
24-
<artifactId>vertx-docgen</artifactId>
24+
<artifactId>vertx-docgen-processor</artifactId>
2525
</dependency>
2626
<dependency>
2727
<groupId>io.vertx</groupId>
2828
<artifactId>vertx-codetrans</artifactId>
2929
<version>4.0.3</version>
3030
</dependency>
3131
</dependencies>
32-
</project>
32+
</project>

vertx-lang-scala-codegen/src/main/java/io/vertx/lang/scala/codegen/ScalaDocGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import io.vertx.codegen.processor.type.TypeMirrorFactory;
77
import io.vertx.codetrans.CodeTranslator;
88
import io.vertx.codetrans.lang.scala.ScalaLang;
9-
import io.vertx.docgen.DocGenerator;
9+
import io.vertx.docgen.processor.impl.DocGenerator;
1010
import javax.annotation.processing.ProcessingEnvironment;
1111
import javax.lang.model.type.ExecutableType;
1212
import javax.lang.model.type.TypeMirror;

vertx-lang-scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@
376376
</dependency>
377377
<dependency>
378378
<groupId>io.vertx</groupId>
379-
<artifactId>vertx-docgen</artifactId>
379+
<artifactId>vertx-docgen-processor</artifactId>
380380
<scope>provided</scope>
381381
</dependency>
382382
<dependency>

0 commit comments

Comments
 (0)