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 9be016a commit ab77aacCopy full SHA for ab77aac
.github/workflows/publish.yml
@@ -9,7 +9,7 @@ on:
9
default: ''
10
11
jobs:
12
- release:
+ publish:
13
runs-on: ubuntu-latest
14
15
steps:
build.gradle
@@ -91,6 +91,10 @@ compileTestJava {
91
]
92
}
93
94
+javadoc.options {
95
+ addStringOption('-add-modules', 'jdk.incubator.vector')
96
+}
97
+
98
jmh {
99
fork = 1
100
warmupIterations = 3
@@ -119,6 +123,8 @@ jmh {
119
123
publishing {
120
124
publications {
121
125
mavenJava(MavenPublication) {
126
+ from(components.java)
127
122
128
pom {
129
name = project.name
130
description = 'A Java version of simdjson, a high-performance JSON parser utilizing SIMD instructions.'
0 commit comments