Skip to content

Commit 1852fb2

Browse files
committed
chore: update readme and publishing artifactId
1 parent 339fe08 commit 1852fb2

2 files changed

Lines changed: 13 additions & 16 deletions

File tree

README.md

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -191,34 +191,31 @@ Place the plugin of the appropriate version in the `plugins` folder.
191191

192192
Repository:
193193
```xml
194-
<repositories>
195-
<repository>
196-
<id>jitpack.io</id>
197-
<url>https://jitpack.io</url>
198-
</repository>
199-
</repositories>
194+
<repository>
195+
<id>luminiadev-repository-releases</id>
196+
<url>https://repo.luminiadev.com/releases</url>
197+
</repository>
200198
```
201199

202200
Dependency
203201
```xml
204202
<dependency>
205-
<groupId>com.github.MEFRREEX</groupId>
206-
<artifactId>FormConstructor</artifactId>
207-
<version>TAG</version>
203+
<groupId>com.mefrreex.formconstructor</groupId>
204+
<artifactId>formconstructor</artifactId>
205+
<version>3.1.0</version>
208206
</dependency>
209207
```
210208

211209
### Gradle
212210

213211
Repository:
214212
```groovy
215-
repositories {
216-
mavenCentral()
217-
maven { url 'https://jitpack.io' }
213+
maven {
214+
name "luminiadevRepositoryReleases"
215+
url "https://repo.luminiadev.com/releases"
218216
}
219217
```
220218
Dependency:
221219
```groovy
222-
dependencies {
223-
implementation 'com.github.MEFRREEX:FormConstructor:TAG'
224-
}
220+
implementation "com.mefrreex.formconstructor:formconstructor:3.1.0"
221+
```

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ publishing {
4141
publications {
4242
create<MavenPublication>("maven") {
4343
groupId = project.group.toString()
44-
artifactId = project.name
44+
artifactId = project.name.lowercase()
4545
version = project.version.toString()
4646
from(components["java"])
4747
}

0 commit comments

Comments
 (0)