Skip to content
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

Update to latest java-repo-tools. #259

Merged
merged 20 commits into from
Jun 20, 2016
Merged

Commits on Mar 22, 2016

  1. Use java-repo-tools checkstyle plugins.

    Fixes checkstyle errors in bookshelf sample.
    tswast committed Mar 22, 2016
    Configuration menu
    Copy the full SHA
    15930b4 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2016

  1. Checkstyle fixes.

    I modify the checkstyle config to have SAME_PACKAGE imports appear
    before third-party imports. I think this better matches the intent of
    the import ordering rules in the style guide.
    https://google.github.io/styleguide/javaguide.html#s3.3.3-import-ordering-and-spacing
    Expecially since it says the `com.google` imports only appear after
    static imports if the source file is in the `com.google` package space.
    tswast committed Mar 29, 2016
    Configuration menu
    Copy the full SHA
    dd718e0 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2016

  1. Configuration menu
    Copy the full SHA
    f89ed2e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f8e7856 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2016

  1. Added few more sample code for Search API. (#173)

    * Moved some checkstyle modules to java-repo-tools
    * Moved some lines in .gitignore to the top level
    Takashi Matsuo authored and tswast committed May 2, 2016
    Configuration menu
    Copy the full SHA
    6b6a900 View commit details
    Browse the repository at this point in the history
  2. Add sample for App Engine Datastore setDistinct projection queries.

    Also update checkstyle to allow 1-letter variable names, since it
    doesn't make sense to give long names to something like "arbitrary
    column A that doesn't actually mean anything".
    tswast committed May 2, 2016
    Configuration menu
    Copy the full SHA
    ab2212d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8ee5b8d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f2e19b6 View commit details
    Browse the repository at this point in the history
  5. Add Datastore indexes samples. (#214)

    Samples are moved from:
    https://cloud.google.com/appengine/docs/java/datastore/indexes
    
    Note: I add a new script `test-devserver.sh` to the testing config. This
    script runs the `mvn appengine:devserver` plugin, waits for it to start,
    then verifies that it gets a non-error response from the `/` path. I use
    this to verify that the `datastore-indexes.xml` files are correct (by
    disabling autoGenerate, the local devserver throws an error when a query
    is used without the correct index defined, just as production does).
    
    We should probably add any "hello world" or other projects to this
    check, as well. Anywhere we say to run `mvn appengine:devserver`, it
    would be good to test that it is correct.
    tswast committed May 2, 2016
    Configuration menu
    Copy the full SHA
    5574790 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bbaa0fc View commit details
    Browse the repository at this point in the history
  7. Merge pull request #10 from GoogleCloudPlatform/java-repo-tools-updat…

    …e-from-java-docs-samples
    
    Java repo tools update from java docs samples
    tswast committed May 2, 2016
    Configuration menu
    Copy the full SHA
    9315c4d View commit details
    Browse the repository at this point in the history

Commits on May 3, 2016

  1. Use subtree command instead of git plumbing.

    This should make it easier to push upstream and pull downstream.
    tswast committed May 3, 2016
    Configuration menu
    Copy the full SHA
    6ee0542 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2016

  1. Merge branch 'master' of github.com:GoogleCloudPlatform/java-repo-too…

    …ls into tswast-update-java-repo-tools
    tswast committed Jun 9, 2016
    Configuration menu
    Copy the full SHA
    90a280d View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2016

  1. Support App Engine or Jetty for local testing.

    This script will allow us to run tests against a local server for
    testing. Since the App Engine and Jetty server running and testing is so
    similar, I combined the scripts rather than copying. The only
    differences are which plugin to use and what string to wait for before
    running curl.
    
    Since the bookshelf sample also needs a `-Plocal` profile argument, I
    extended the script to allow passing through arbitrary arguments to
    Maven.
    tswast committed Jun 10, 2016
    Configuration menu
    Copy the full SHA
    89c888d View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2016

  1. Add localhost tests to Travis.

    Run the local servers and verify they respond with code 200 to the "/"
    path.
    
    Note: bookshelf does not yet run in Travis, since we'll need to set up
    client secrets credentials.
    tswast committed Jun 13, 2016
    Configuration menu
    Copy the full SHA
    494d6cb View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2016

  1. Merge branch 'master' of github.com:GoogleCloudPlatform/java-repo-too…

    …ls into tswast-push-java-repo-tools
    tswast committed Jun 20, 2016
    Configuration menu
    Copy the full SHA
    0cd0a1e View commit details
    Browse the repository at this point in the history
  2. test-devserver.sh is replaced by scripts/test-localhost.sh.

    Also, update the README instructions for how to push changes upstream.
    tswast committed Jun 20, 2016
    Configuration menu
    Copy the full SHA
    3686a49 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11 from GoogleCloudPlatform/tswast-push-java-repo…

    …-tools
    
    Update java-repo-tools from getting-started-java.
    tswast authored Jun 20, 2016
    Configuration menu
    Copy the full SHA
    1d046f9 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' of github.com:GoogleCloudPlatform/java-repo-too…

    …ls into tswast-pull-java-repo-tools
    tswast committed Jun 20, 2016
    Configuration menu
    Copy the full SHA
    029773a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    346295f View commit details
    Browse the repository at this point in the history