File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -191,34 +191,31 @@ Place the plugin of the appropriate version in the `plugins` folder.
191191
192192Repository:
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
202200Dependency
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
213211Repository:
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```
220218Dependency:
221219``` groovy
222- dependencies {
223- implementation 'com.github.MEFRREEX:FormConstructor:TAG'
224- }
220+ implementation "com.mefrreex.formconstructor:formconstructor:3.1.0"
221+ ```
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments