Skip to content

Commit 06331dd

Browse files
authored
Merge pull request #31 from SentryMan/module-name
Change Module name to `io.avaje.recordbuilder`
2 parents 342da87 + 3be1d0e commit 06331dd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Uses Annotation processing to generate builders for records.
2525
When working with Java modules you need to add the annotation module as a static dependency.
2626
```java
2727
module my.module {
28-
requires static io.avaje.record;
28+
requires static io.avaje.recordbuilder;
2929
}
3030
```
3131
### 2. Add `@RecordBuilder`

avaje-record-builder-core/src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module io.avaje.record.core {
1+
module io.avaje.recordbuilder.core {
22

33
requires java.compiler;
44
requires static io.avaje.prism;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module io.avaje.record {
1+
module io.avaje.recordbuilder {
22

33
exports io.avaje.recordbuilder;
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module io.avaje.spi.blackbox {
2-
requires io.avaje.record;
2+
requires io.avaje.recordbuilder;
33
requires io.avaje.validation.contraints;
44
requires java.compiler;
55
}

0 commit comments

Comments
 (0)