Skip to content

Commit 4a26e46

Browse files
JAVA-8350 - Gradle build integration with maven Merge pull request #972 from yadavan88/maven-gradle-build-backup
2 parents ff22623 + 0fb898b commit 4a26e46

File tree

42 files changed

+887
-542
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+887
-542
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
version: 1
1+
version: 2
22
updates:
33
- package-ecosystem: "maven"
44
directory: /
55
schedule:
66
interval: daily
77
ignore:
8-
- dependency_name: "com.google.code.gson:gson"
8+
- dependency-name: "com.google.code.gson:gson"
99
versions: ["2.8.5"]
10-
- dependency_name: "com.google.protobuf:protobuf-java"
10+
- dependency-name: "com.google.protobuf:protobuf-java"
1111
versions: ["3.18.1"]
12-
- dependency_name: "com.google.protobuf:protobuf-kotlin"
12+
- dependency-name: "com.google.protobuf:protobuf-kotlin"
1313
versions: ["3.18.1"]
14-
- dependency_name: "ch.qos.logback:logback-core"
14+
- dependency-name: "ch.qos.logback:logback-core"
1515
versions: ["1.1.7", "1.2.3"]
16-
- dependency_name: "org.jboss.resteasy:resteasy-client"
16+
- dependency-name: "org.jboss.resteasy:resteasy-client"
1717
versions: ["3.8.0.Final"]
18-
- dependency_name: "ch.qos.logback:logback-classic"
18+
- dependency-name: "ch.qos.logback:logback-classic"
1919
versions: ["1.2.3"]
20-
- dependency_name: "com.fasterxml.jackson.core:jackson-databind"
20+
- dependency-name: "com.fasterxml.jackson.core:jackson-databind"
2121
versions: ["2.11.1"]
22-
- dependency_name: "com.h2database:h2"
22+
- dependency-name: "com.h2database:h2"
2323
versions: ["2.1.210"]
24-
- dependency_name: "com.google.guava:guava"
25-
versions: ["29.0-jre"]
24+
- dependency-name: "com.google.guava:guava"
25+
versions: ["29.0-jre"]

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,5 @@ apache-fop/src/test/resources/output_herold.pdf
9292
apache-fop/src/test/resources/output_html2fo.pdf
9393
apache-fop/src/test/resources/output_jtidy.pdf
9494

95-
!ktlint-custom-1.0.0-SNAPSHOT.jar
95+
!ktlint-custom-1.0.0-SNAPSHOT.jar
96+
!**/gradle-wrapper.jar

core-kotlin-modules/core-kotlin-advanced-3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</dependencies>
2929

3030
<properties>
31-
<kotlinx-html-jvm.version>0.7.2</kotlinx-html-jvm.version>
31+
<kotlinx-html-jvm.version>0.7.5</kotlinx-html-jvm.version>
3232
</properties>
3333

3434
<build>

gradle-kotlin-dsl/custom-source-set/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
java
33
application
4-
kotlin("jvm") version "1.8.22"
4+
kotlin("jvm") version "2.0.0"
55
}
66

77
sourceSets {
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)