Skip to content

Commit

Permalink
Fix dependency declaration for vertx-docgen-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-brm committed Nov 6, 2024
1 parent 838a8b0 commit 6648464
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.7.17
version = 3.8.3
runner.dialect = scala3
align.preset = more
align.multiline = true
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@
<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-stack-depchain</artifactId>
<artifactId>vertx-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-docgen</artifactId>
<version>0.9.4</version>
<artifactId>vertx-docgen-processor</artifactId>
<version>0.9.8</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
Expand Down
8 changes: 4 additions & 4 deletions vertx-lang-scala-codegen/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand All @@ -21,12 +21,12 @@
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-docgen</artifactId>
<artifactId>vertx-docgen-processor</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codetrans</artifactId>
<version>4.0.3</version>
</dependency>
</dependencies>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import io.vertx.codegen.processor.type.TypeMirrorFactory;
import io.vertx.codetrans.CodeTranslator;
import io.vertx.codetrans.lang.scala.ScalaLang;
import io.vertx.docgen.DocGenerator;
import io.vertx.docgen.processor.impl.DocGenerator;
import javax.annotation.processing.ProcessingEnvironment;
import javax.lang.model.type.ExecutableType;
import javax.lang.model.type.TypeMirror;
Expand Down
2 changes: 1 addition & 1 deletion vertx-lang-scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-docgen</artifactId>
<artifactId>vertx-docgen-processor</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 6648464

Please sign in to comment.