Skip to content

Commit 3feff70

Browse files
release: fix missing javadoc
1 parent ec70a49 commit 3feff70

3 files changed

Lines changed: 24 additions & 6 deletions

File tree

znai-docs/znai/llm.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ answer-link: znai-from-export/introduction/getting-started#command-line
146146
## CLI download
147147

148148
Download and unzip
149-
[znai](https://repo.maven.apache.org/maven2/org/testingisdocumenting/znai/znai-dist/1.87-SNAPSHOT/znai-dist-1.87-SNAPSHOT-znai.zip).
150-
Add it to your `PATH`.
149+
[znai](https://repo.maven.apache.org/maven2/org/testingisdocumenting/znai/znai-dist/1.87/znai-dist-1.87-znai.zip). Add
150+
it to your `PATH`.
151151

152152
## Brew
153153

@@ -162,7 +162,7 @@ answer-link: znai-from-export/introduction/getting-started#maven-plugin
162162
<plugin>
163163
<groupId>org.testingisdocumenting.znai</groupId>
164164
<artifactId>znai-maven-plugin</artifactId>
165-
<version>1.87-SNAPSHOT</version>
165+
<version>1.87</version>
166166
</plugin>
167167
```
168168

@@ -4692,7 +4692,7 @@ scenario("capture screenshot") {
46924692
"type" : "badge",
46934693
"text" : "2",
46944694
"x" : 367,
4695-
"y" : 604,
4695+
"y" : 594,
46964696
"align" : "Center"
46974697
} ],
46984698
"pixelRatio" : 2
@@ -8589,7 +8589,7 @@ scenario("capture screenshot") {
85898589
"type" : "badge",
85908590
"text" : "2",
85918591
"x" : 367,
8592-
"y" : 604,
8592+
"y" : 594,
85938593
"align" : "Center"
85948594
} ],
85958595
"pixelRatio" : 2

znai-groovy/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,25 @@
8181
</execution>
8282
</executions>
8383
</plugin>
84+
85+
<!-- Generate empty javadoc JAR for Maven Central -->
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-jar-plugin</artifactId>
89+
<executions>
90+
<execution>
91+
<id>empty-javadoc-jar</id>
92+
<phase>package</phase>
93+
<goals>
94+
<goal>jar</goal>
95+
</goals>
96+
<configuration>
97+
<classifier>javadoc</classifier>
98+
<classesDirectory>${project.build.directory}/javadoc</classesDirectory>
99+
</configuration>
100+
</execution>
101+
</executions>
102+
</plugin>
84103
</plugins>
85104
</build>
86105
</project>

znai-shaded/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@
153153
<plugin>
154154
<groupId>org.apache.maven.plugins</groupId>
155155
<artifactId>maven-jar-plugin</artifactId>
156-
<version>3.5.0</version>
157156
<executions>
158157
<execution>
159158
<id>empty-javadoc-jar</id>

0 commit comments

Comments
 (0)