-
Notifications
You must be signed in to change notification settings - Fork 614
adding placeholder jars #2635
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding placeholder jars #2635
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 To request another review, post a new comment with "/windsurf-review".
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-source-plugin</artifactId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The maven-source-plugin is missing a version specification. It's a best practice to explicitly define plugin versions to ensure build reproducibility.
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-jar-plugin</artifactId> | ||
| <version>3.3.0</version> <!-- Use a recent version --> | ||
| <executions> | ||
| <execution> | ||
| <id>javadoc-jar</id> | ||
| <phase>package</phase> | ||
| <goals> | ||
| <goal>jar</goal> | ||
| </goals> | ||
| <configuration> | ||
| <classifier>javadoc</classifier> | ||
| <!-- To create an empty Javadoc JAR, you can set includeEmptyDirs to false and ensure no files are copied --> | ||
| <includeEmptyDirs>false</includeEmptyDirs> | ||
| <excludes> | ||
| <!-- Exclude all files to ensure an empty JAR if desired --> | ||
| <exclude>**/*</exclude> | ||
| </excludes> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are two separate maven-jar-plugin declarations which could lead to unexpected behavior. Consider merging them by moving the javadoc-jar execution into the first maven-jar-plugin declaration.
Client V2 CoverageCoverage Report
Class Coverage
|
JDBC V2 CoverageCoverage Report
Class Coverage
|
|
JDBC V1 CoverageCoverage Report
Class Coverage
|
Client V1 CoverageCoverage Report
Class Coverage
|



Summary
Closes
Checklist
Delete items not relevant to your PR: