Skip to content

Commit e72fc8f

Browse files
authored
Merge pull request #348 from LossyDragon/protobufs-steamd-updates
Protobufs and SteamLanguage updates
2 parents 5e437d8 + e8de6c1 commit e72fc8f

File tree

45 files changed

+8984
-2860
lines changed

Some content is hidden

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

45 files changed

+8984
-2860
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020

2121
allprojects {
2222
group = "in.dragonbra"
23-
version = "1.6.1-SNAPSHOT"
23+
version = "1.7.0"
2424
}
2525

2626
repositories {

javasteam-deadlock/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
plugins {
2+
alias(libs.plugins.protobuf.gradle)
3+
id("java")
4+
id("maven-publish")
5+
id("signing")
6+
}
7+
8+
repositories {
9+
mavenCentral()
10+
}
11+
12+
java {
13+
sourceCompatibility = JavaVersion.toVersion(libs.versions.java.get())
14+
targetCompatibility = JavaVersion.toVersion(libs.versions.java.get())
15+
withSourcesJar()
16+
withJavadocJar()
17+
}
18+
19+
/* Protobufs */
20+
protobuf.protoc {
21+
artifact = libs.protobuf.protoc.get().toString()
22+
}
23+
24+
/* Java Docs */
25+
tasks.javadoc {
26+
exclude("**/in/dragonbra/javasteam/protobufs/**")
27+
}
28+
29+
dependencies {
30+
implementation(libs.protobuf.java)
31+
}
32+
33+
// TODO promote to actual lib?

0 commit comments

Comments
 (0)