Skip to content

Commit a63e401

Browse files
authored
Merge pull request #4 from ZorTik/development
Development
2 parents 04d3627 + 03b43a1 commit a63e401

2 files changed

Lines changed: 34 additions & 24 deletions

File tree

build.gradle

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff 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
}

settings.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
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")

0 commit comments

Comments
 (0)