We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f6fd2 commit d797f5cCopy full SHA for d797f5c
Samples/SwiftAndJavaJarSampleLib/build.gradle
@@ -144,11 +144,11 @@ List<String> swiftProductDylibPaths() {
144
}.flatten()
145
146
147
- println("products = ${products}")
+
148
def productDylibPaths = products.collect {
149
+ logger.info("[swift-java] Include Swift product: '${it}' in product resource paths.")
150
"${layout.projectDirectory}/.build/${swiftBuildConfiguration()}/lib${it}.dylib"
151
}
- println("PRODUCT DYLIB PATHS = ${productDylibPaths}")
152
153
return productDylibPaths
154
@@ -163,6 +163,10 @@ processResources {
163
from(dylibs)
164
165
166
+jar {
167
+ archiveClassifier = osdetector.classifier
168
+}
169
170
base {
171
archivesName = "swift-and-java-jar-sample-lib"
172
0 commit comments