We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e213ca commit e1c63c1Copy full SHA for e1c63c1
deploy.gradle
@@ -22,12 +22,8 @@ if (project.hasProperty('release') && jdkVersion != '11') {
22
}
23
24
subprojects {
25
- if (it.name == 'iceberg-open-api') {
26
- // don't publish iceberg-open-api
27
- return
28
- }
29
-
30
def isBom = it.name == 'iceberg-bom'
+ def isOpenApi = it.name == 'iceberg-open-api'
31
32
apply plugin: 'maven-publish'
33
apply plugin: 'signing'
@@ -76,6 +72,9 @@ subprojects {
76
72
apache(MavenPublication) {
77
73
if (isBom) {
78
74
from components.javaPlatform
75
+ } else if (isOpenApi) {
+ artifact testJar
+ artifact testFixturesJar
79
} else {
80
if (tasks.matching({task -> task.name == 'shadowJar'}).isEmpty()) {
81
from components.java
0 commit comments