Hi folks, I have a services entry in BUILD file: `...
# general
b
Hi folks, I have a services entry in BUILD file:
Copy code
java_library(
    name='prestoUdfs-lib',
    dependencies=[provided('3rdparty/java/com/facebook:presto-spi'),
                  provided('3rdparty/java/com/google:guava')
                 ],
    sources=globs('*.java'),
)

jvm_binary(
    name='prestoUdfs-artifacts',
    dependencies=[':prestoUdfs-lib'],
    services={'com.facebook.presto.spi.Plugin': 'com.roku.dea.presto.udfs.UdfPlugin'}
)
I extracted the jar file, somehow com.facebook.presto.spi.Plugin is broken. Do you guys have any thoughts, thanks a lot.
Copy code
cat META-INF/services/com.facebook.presto.spi.Plugin 
# Generated from pants target src/main/java/com/roku/dea/presto/udfs:prestoUdfs-artifacts
c
o
m
.
r
o
k
u
.
d
e
a
.
p
r
e
s
t
o
.
u
d
f
s
.
U
d
f
P
l
u
g
i
n
# Generated from pants target src/main/java/com/roku/dea/presto/udfs:prestoUdfs-artifacts
c
o
m
.
r
o
k
u
.
d
e
a
.
p
r
e
s
t
o
.
u
d
f
s
.
U
d
f
P
l
u
g
i
n
# Generated from pants target src/main/java/com/roku/dea/presto/udfs:prestoUdfs-artifacts
c
o
m
.
r
o
k
u
.
d
e
a
.
p
r
e
s
t
o
.
u
d
f
s
.
U
d
f
P
l
u
g
i
n