File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,28 +27,35 @@ jar {
2727 }
2828}
2929
30- publishing {
31- publications {
32- mavenJava(MavenPublication ) {
33- groupId = ' com.github.ZorTik'
34- artifactId = ' SQLLib'
35- version = ' 1.0'
36-
37- from components. java
38- pom {
39- name = ' AdvancedSQlClient'
40- description = ' An Ultimate SQL client for Java!'
41- licenses {
42- license {
43- name = ' MIT License'
44- url = ' https://raw.githubusercontent.com/ZorTik/ContainrGUI/master/LICENSE'
30+ subprojects {
31+ apply plugin : ' java'
32+ apply plugin : ' maven-publish'
33+
34+ compileJava. options. encoding = ' UTF-8'
35+
36+ publishing {
37+ publications {
38+ mavenJava(MavenPublication ) {
39+ groupId = ' com.github.ZorTik'
40+ artifactId = project. name
41+ version = ' 1.0'
42+
43+ from components. java
44+ pom {
45+ name = ' AdvancedSQLClient'
46+ description = ' An Ultimate SQL client for Java!'
47+ licenses {
48+ license {
49+ name = ' MIT License'
50+ url = ' https://raw.githubusercontent.com/ZorTik/ContainrGUI/master/LICENSE'
51+ }
4552 }
46- }
47- developers {
48- developer {
49- id = ' zort '
50- name = ' ZorTik '
51- email = ' zortlegit@gmail.com '
53+ developers {
54+ developer {
55+ id = ' zort '
56+ name = ' ZorTik '
57+ email = ' zortlegit@gmail.com '
58+ }
5259 }
5360 }
5461 }
Original file line number Diff line number Diff line change 1- rootProject. name = ' SQLLib'
2- include ' api'
3- include ' core'
1+ rootProject. name = ' AdvancedSQLClient'
2+ include ' :api'
3+ include ' :core'
4+
5+ project(" :api" ). projectDir = file(" api" )
6+ project(" :core" ). projectDir = file(" core" )
You can’t perform that action at this time.
0 commit comments