-
Notifications
You must be signed in to change notification settings - Fork 69
chore: declare test-jar in GAX's testlib artifacts #1474
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
Changes from 4 commits
2484061
46b7938
92ad52e
1aa9040
faf89ba
c95c5d4
f3b8be5
f106572
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,6 +12,7 @@ | |
| <groupId>com.google.cloud</groupId> | ||
| <artifactId>google-cloud-shared-config</artifactId> | ||
| <version>1.5.5</version> | ||
| <relativePath/> | ||
| </parent> | ||
|
|
||
| <developers> | ||
|
|
@@ -48,12 +49,26 @@ | |
| <groupId>com.google.api</groupId> | ||
| <artifactId>gax</artifactId> | ||
| <version>2.23.3-SNAPSHOT</version><!-- {x-version-update:gax:current} --> | ||
| <type>test-jar</type> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @JoeWang1127
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this line is needed to bring the test code.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A BOM doesn't determine what code goes to JAR file.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's an error in
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK it’s for IntelliJ. Then it makes sense. |
||
| <classifier>testlib</classifier> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api</groupId> | ||
| <artifactId>gax</artifactId> | ||
| <version>2.23.3-SNAPSHOT</version><!-- {x-version-update:gax:current} --> | ||
| <classifier>testlib</classifier> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Trying an additional entry that does not carry "test-jar".
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @suztomo thanks for the help. |
||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api</groupId> | ||
| <artifactId>gax-grpc</artifactId> | ||
| <version>2.23.3-SNAPSHOT</version><!-- {x-version-update:gax-grpc:current} --> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api</groupId> | ||
| <artifactId>gax-grpc</artifactId> | ||
| <version>2.23.3-SNAPSHOT</version><!-- {x-version-update:gax-grpc:current} --> | ||
| <type>test-jar</type> | ||
| <classifier>testlib</classifier> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api</groupId> | ||
|
|
@@ -66,6 +81,13 @@ | |
| <artifactId>gax-httpjson</artifactId> | ||
| <version>0.108.3-SNAPSHOT</version><!-- {x-version-update:gax-httpjson:current} --> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api</groupId> | ||
| <artifactId>gax-httpjson</artifactId> | ||
| <version>0.108.3-SNAPSHOT</version><!-- {x-version-update:gax-httpjson:current} --> | ||
| <type>test-jar</type> | ||
| <classifier>testlib</classifier> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api</groupId> | ||
| <artifactId>gax-httpjson</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.
Can you add source code comment why this test-jar is important?
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.
done.