-
Notifications
You must be signed in to change notification settings - Fork 70
feat: DIREGAPIC initial implementation #746
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8983e23
feat: implement DIREGAPIC
vam-google d568db5
feat: implement DIREGAPIC without integration tests
vam-google 8de3877
fix: fix ordering of generated fields
vam-google b1d0660
Address PR feedback.
vam-google 72a53c6
Add a comment about order of things in WORKSPACE file
vam-google 2dcf807
Merge remote-tracking branch 'upstream/master'
vam-google d99d8d0
revert update of googleapis hash, as it started picking up newer upda…
vam-google 35b6dde
address PR feedback
vam-google 393840e
address PR feedback
vam-google eaf7916
address PR feedback
vam-google dc8a156
Merge remote-tracking branch 'upstream/master'
vam-google f0563bb
address PR feedback
vam-google File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| buildscript { | ||
| repositories { | ||
| mavenCentral() | ||
| } | ||
| } | ||
|
|
||
| apply plugin: 'java' | ||
|
|
||
| description = 'GAPIC library for {{name}}' | ||
| group = 'com.google.cloud' | ||
| version = (findProperty('version') == 'unspecified') ? '0.0.0-SNAPSHOT' : version | ||
| sourceCompatibility = 1.7 | ||
| targetCompatibility = 1.7 | ||
|
|
||
| repositories { | ||
| mavenCentral() | ||
| mavenLocal() | ||
| } | ||
|
|
||
| compileJava.options.encoding = 'UTF-8' | ||
| javadoc.options.encoding = 'UTF-8' | ||
|
|
||
| dependencies { | ||
| compile 'com.google.api:gax:{{version.gax}}' | ||
| testCompile 'com.google.api:gax:{{version.gax}}:testlib' | ||
| compile 'com.google.api:gax-httpjson:{{version.gax_httpjson}}' | ||
| testCompile 'com.google.api:gax-httpjson:{{version.gax_httpjson}}:testlib' | ||
| testCompile '{{maven.junit_junit}}' | ||
| {{extra_deps}} | ||
| } | ||
|
|
||
| task smokeTest(type: Test) { | ||
| filter { | ||
| includeTestsMatching "*SmokeTest" | ||
| setFailOnNoMatchingTests false | ||
| } | ||
| } | ||
|
|
||
| test { | ||
| exclude "**/*SmokeTest*" | ||
| } | ||
|
|
||
| sourceSets { | ||
| main { | ||
| java { | ||
| srcDir 'src/main/java' | ||
| } | ||
| } | ||
| } | ||
|
|
||
| clean { | ||
| delete 'all-jars' | ||
| } | ||
|
|
||
| task allJars(type: Copy) { | ||
| dependsOn test, jar | ||
| into 'all-jars' | ||
| // Replace with `from configurations.testRuntime, jar` to include test dependencies | ||
| from configurations.runtime, jar | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.