Skip to content

Commit ab77aac

Browse files
committed
fixed publication
1 parent 9be016a commit ab77aac

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
default: ''
1010

1111
jobs:
12-
release:
12+
publish:
1313
runs-on: ubuntu-latest
1414

1515
steps:

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ compileTestJava {
9191
]
9292
}
9393

94+
javadoc.options {
95+
addStringOption('-add-modules', 'jdk.incubator.vector')
96+
}
97+
9498
jmh {
9599
fork = 1
96100
warmupIterations = 3
@@ -119,6 +123,8 @@ jmh {
119123
publishing {
120124
publications {
121125
mavenJava(MavenPublication) {
126+
from(components.java)
127+
122128
pom {
123129
name = project.name
124130
description = 'A Java version of simdjson, a high-performance JSON parser utilizing SIMD instructions.'

0 commit comments

Comments
 (0)