feat: moved devkit-bom inside this project
This commit is contained in:
@@ -0,0 +1,46 @@
|
|||||||
|
# DevKit BOM
|
||||||
|
|
||||||
|
The devkit-bom (Bill of Materials) is a Maven POM file provided by OnixByte to manage dependency versions for the DevKit suite of libraries. By incorporating this BOM into your build configuration, you can ensure consistent versioning across all included dependencies without needing to specify versions explicitly in your project files. Published with Gradle metadata, this BOM supports both Maven and Gradle projects, and this document outlines how to integrate and use it effectively in both ecosystems.
|
||||||
|
|
||||||
|
## Using in Maven
|
||||||
|
|
||||||
|
Add the `devkit-bom` to your `pom.xml` under `<dependencyManagement>`:
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.onixbyte</groupId>
|
||||||
|
<artifactId>devkit-bom</artifactId>
|
||||||
|
<version>${devkit-version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
```
|
||||||
|
|
||||||
|
Then reference dependencies like `devkit-core` without a version.
|
||||||
|
|
||||||
|
## Using in Gradle
|
||||||
|
|
||||||
|
In your `build.gradle[.kts]`, apply the BOM using the `platform` dependency:
|
||||||
|
|
||||||
|
```groovy
|
||||||
|
dependencies {
|
||||||
|
implementation platform('com.onixbyte:devkit-bom:2.0.0')
|
||||||
|
implementation 'com.onixbyte:devkit-core'
|
||||||
|
implementation 'com.onixbyte:devkit-utils'
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
If you are using Kotlin DSL:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
dependencies {
|
||||||
|
implementation(platform("com.onixbyte:devkit-bom:2.0.0"))
|
||||||
|
implementation("com.onixbyte:devkit-core")
|
||||||
|
implementation("com.onixbyte:devkit-utils")
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
@@ -0,0 +1,105 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2024-2025 OnixByte.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
*
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("java-platform")
|
||||||
|
id("maven-publish")
|
||||||
|
id("signing")
|
||||||
|
}
|
||||||
|
|
||||||
|
val artefactVersion: String by project
|
||||||
|
|
||||||
|
group = "com.onixbyte"
|
||||||
|
version = artefactVersion
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
constraints {
|
||||||
|
api("com.onixbyte:devkit-core:$artefactVersion")
|
||||||
|
api("com.onixbyte:devkit-utils:$artefactVersion")
|
||||||
|
api("com.onixbyte:guid:$artefactVersion")
|
||||||
|
api("com.onixbyte:key-pair-loader:$artefactVersion")
|
||||||
|
api("com.onixbyte:map-util-unsafe:$artefactVersion")
|
||||||
|
api("com.onixbyte:num4j:$artefactVersion")
|
||||||
|
api("com.onixbyte:simple-jwt-facade:$artefactVersion")
|
||||||
|
api("com.onixbyte:simple-jwt-authzero:$artefactVersion")
|
||||||
|
api("com.onixbyte:simple-jwt-spring-boot-starter:$artefactVersion")
|
||||||
|
api("com.onixbyte:property-guard-spring-boot-starter:$artefactVersion")
|
||||||
|
api("com.onixbyte:simple-serial-spring-boot-starter:$artefactVersion")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
publications {
|
||||||
|
create<MavenPublication>("devkitBom") {
|
||||||
|
groupId = group.toString()
|
||||||
|
artifactId = "devkit-bom"
|
||||||
|
version = artefactVersion
|
||||||
|
|
||||||
|
pom {
|
||||||
|
name = "DevKit BOM"
|
||||||
|
description = "Using BOM could use unified OnixByte JDevKit."
|
||||||
|
url = "https://github.com/OnixByte/devkit-bom"
|
||||||
|
|
||||||
|
licenses {
|
||||||
|
license {
|
||||||
|
name = "The Apache License, Version 2.0"
|
||||||
|
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
scm {
|
||||||
|
connection = "scm:git:git://github.com:OnixByte/devkit-bom.git"
|
||||||
|
developerConnection = "scm:git:git://github.com:OnixByte/devkit-bom.git"
|
||||||
|
url = "https://github.com/OnixByte/devkit-bom"
|
||||||
|
}
|
||||||
|
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
id = "zihluwang"
|
||||||
|
name = "Zihlu Wang"
|
||||||
|
email = "zihlu.wang@onixbyte.com"
|
||||||
|
timezone = "Asia/Hong_Kong"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
print(components)
|
||||||
|
|
||||||
|
from(components["javaPlatform"])
|
||||||
|
|
||||||
|
signing {
|
||||||
|
sign(publishing.publications["devkitBom"])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
name = "sonatypeNexus"
|
||||||
|
url = URI(providers.gradleProperty("repo.maven-central.host").get())
|
||||||
|
credentials {
|
||||||
|
username = providers.gradleProperty("repo.maven-central.username").get()
|
||||||
|
password = providers.gradleProperty("repo.maven-central.password").get()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,6 +14,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
|
|||||||
+7
-7
@@ -15,16 +15,16 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
artefactVersion=2.0.0
|
||||||
|
projectUrl=https://onixbyte.com/JDevKit
|
||||||
|
projectGithubUrl=https://github.com/OnixByte/JDevKit
|
||||||
|
licenseName=The Apache License, Version 2.0
|
||||||
|
licenseUrl=https://www.apache.org/licenses/LICENSE-2.0.txt
|
||||||
|
|
||||||
jacksonVersion=2.18.2
|
jacksonVersion=2.18.2
|
||||||
javaJwtVersion=4.4.0
|
javaJwtVersion=4.4.0
|
||||||
junitVersion=5.11.4
|
junitVersion=5.11.4
|
||||||
logbackVersion=1.5.16
|
logbackVersion=1.5.16
|
||||||
slf4jVersion=2.0.16
|
slf4jVersion=2.0.16
|
||||||
springVersion=6.2.2
|
springVersion=6.2.2
|
||||||
springBootVersion=3.4.2
|
springBootVersion=3.4.2
|
||||||
|
|
||||||
artefactVersion=2.0.0
|
|
||||||
projectUrl=https://onixbyte.com/JDevKit
|
|
||||||
projectGithubUrl=https://github.com/OnixByte/JDevKit
|
|
||||||
licenseName=The Apache License, Version 2.0
|
|
||||||
licenseUrl=https://www.apache.org/licenses/LICENSE-2.0.txt
|
|
||||||
@@ -14,6 +14,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
id("java-library")
|
id("java-library")
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
id("java-library")
|
id("java-library")
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
id("java-library")
|
id("java-library")
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
id("java-library")
|
id("java-library")
|
||||||
|
|||||||
@@ -18,6 +18,7 @@
|
|||||||
rootProject.name = "JDevKit"
|
rootProject.name = "JDevKit"
|
||||||
|
|
||||||
include(
|
include(
|
||||||
|
"devkit-bom",
|
||||||
"devkit-core",
|
"devkit-core",
|
||||||
"devkit-utils",
|
"devkit-utils",
|
||||||
"guid",
|
"guid",
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
id("java-library")
|
id("java-library")
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
id("java-library")
|
id("java-library")
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
id("java-library")
|
id("java-library")
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import java.net.URI
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
|
|||||||
Reference in New Issue
Block a user