Skip to content

Commit 8801c2b

Browse files
committed
fix: copy paste error
1 parent 9fcb829 commit 8801c2b

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

src/content/docs/velocity/dev/getting-started/creating-your-first-plugin.mdx

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -122,26 +122,26 @@ system's documentation ([Gradle](https://docs.gradle.org/current/userguide/userg
122122
<type>processor</type>
123123
</dependency>
124124
</dependencies>
125-
</project>
126125

127-
<build>
128-
<plugins>
129-
<plugin>
130-
<groupId>org.apache.maven.plugins</groupId>
131-
<artifactId>maven-compiler-plugin</artifactId>
132-
<configuration>
133-
<!-- add the annotation processor (Maven 3) -->
134-
<annotationProcessorPaths>
135-
<path>
136-
<groupId>com.velocitypowered</groupId>
137-
<artifactId>velocity-api</artifactId>
138-
<version>\{LATEST_VELOCITY_RELEASE}</version>
139-
</path>
140-
</annotationProcessorPaths>
141-
</configuration>
142-
</plugin>
143-
</plugins>
144-
</build>
126+
<build>
127+
<plugins>
128+
<plugin>
129+
<groupId>org.apache.maven.plugins</groupId>
130+
<artifactId>maven-compiler-plugin</artifactId>
131+
<configuration>
132+
<!-- add the annotation processor (Maven 3) -->
133+
<annotationProcessorPaths>
134+
<path>
135+
<groupId>com.velocitypowered</groupId>
136+
<artifactId>velocity-api</artifactId>
137+
<version>\{LATEST_VELOCITY_RELEASE}</version>
138+
</path>
139+
</annotationProcessorPaths>
140+
</configuration>
141+
</plugin>
142+
</plugins>
143+
</build>
144+
</project>
145145
```
146146
</TabItem>
147147
</Tabs>

0 commit comments

Comments
 (0)