Skip to content

Commit c03716b

Browse files
committed
Update Java docs
1 parent 1364b96 commit c03716b

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/content/docs/get-started/index.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ import { Code } from 'astro-expressive-code/components';
1212
export const CODE_BLOCKS = {
1313
java: {
1414
maven: `<dependency>
15-
<groupId>com.lbugdb</groupId>
15+
<groupId>com.ladybugdb</groupId>
1616
<artifactId>lbug</artifactId>
1717
<version>${version}</version>
1818
</dependency>`,
19-
groovy: `implementation 'com.lbugdb:lbug:${version}'`,
20-
kotlin: `implementation("com.lbugdb:lbug:${version}")`,
19+
groovy: `implementation 'com.ladybugdb:lbug:${version}'`,
20+
kotlin: `implementation("com.ladybugdb:lbug:${version}")`,
2121
gradle: `plugins {
2222
id 'java'
2323
id 'application'
@@ -29,7 +29,7 @@ repositories {
2929
mavenCentral()
3030
}
3131
dependencies {
32-
implementation 'com.lbugdb:lbug:${version}'
32+
implementation 'com.ladybugdb:lbug:${version}'
3333
}`,
3434
},
3535
swift:`import PackageDescription
@@ -312,7 +312,7 @@ const lbug = require("lbug");
312312

313313
<TabItem label="Java">
314314

315-
Ladybug's Java client library is available on [Maven Central](https://central.sonatype.com/artifact/com.lbugdb/lbug). You can add the following snippet to your `pom.xml` to get it installed:
315+
Ladybug's Java client library is available on [Maven Central](https://central.sonatype.com/artifact/com.ladybugdb/lbug). You can add the following snippet to your `pom.xml` to get it installed:
316316

317317
<Code code={CODE_BLOCKS.java.maven} lang="xml"/>
318318

@@ -346,7 +346,7 @@ The `Main.java` contains the following code:
346346

347347
```java
348348
// Main.java
349-
import com.lbugdb.*;
349+
import com.ladybugdb.*;
350350

351351
public class Main {
352352
public static void main(String[] args) throws ObjectRefDestroyedException {

src/content/docs/installation.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ win: `curl -L -O https://github.com/LadybugDB/ladybug/releases/download/v${versi
2424
winUrl: `https://github.com/LadybugDB/ladybug/releases/download/v${version}/lbug_cli-windows-x86_64.zip`,
2525
},
2626
java: `<dependency>
27-
<groupId>com.lbugdb</groupId>
27+
<groupId>com.ladybugdb</groupId>
2828
<artifactId>lbug</artifactId>
2929
<version>${version}</version>
3030
</dependency>
@@ -176,7 +176,7 @@ npm install lbug
176176

177177
## Java
178178

179-
The latest stable version is available on [Maven Central](https://central.sonatype.com/artifact/com.lbugdb/lbug).
179+
The latest stable version is available on [Maven Central](https://central.sonatype.com/artifact/com.ladybugdb/lbug).
180180

181181
<Code code={DOWNLOAD_LINKS.java} lang="xml" frame="terminal"/>
182182

0 commit comments

Comments
 (0)