You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by me...@apache.org on 2017/11/07 16:47:28 UTC

[beam-site] branch mergebot updated (24937f1 -> 4a9f096)

This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a change to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git.


    from 24937f1  This closes #338
     add 94b2026  Prepare repository for deployment.
     new 7fc0ff3  Update IntelliJ Checkstyle instructions
     new bc6691d  Address https://github.com/apache/beam-site/pull/331#discussion_r144115767
     new bf28981  Address https://github.com/apache/beam-site/pull/331#discussion_r144906095
     new 4a9f096  This closes #331

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 content/documentation/sdks/nexmark/index.html |  8 ++--
 src/contribute/contribution-guide.md          | 67 ++++++++++++++-------------
 2 files changed, 38 insertions(+), 37 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@beam.apache.org" <co...@beam.apache.org>'].

[beam-site] 02/04: Address https://github.com/apache/beam-site/pull/331#discussion_r144115767

Posted by me...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a commit to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit bc6691dff30888d15a19665dde132307c365c698
Author: wtanaka.com <wt...@users.noreply.github.com>
AuthorDate: Sat Oct 14 08:01:45 2017 -1000

    Address
    https://github.com/apache/beam-site/pull/331#discussion_r144115767
---
 src/contribute/contribution-guide.md | 62 ++++++++++++++++++------------------
 1 file changed, 31 insertions(+), 31 deletions(-)

diff --git a/src/contribute/contribution-guide.md b/src/contribute/contribution-guide.md
index 4d70371..bd96f24 100644
--- a/src/contribute/contribution-guide.md
+++ b/src/contribute/contribution-guide.md
@@ -33,7 +33,7 @@ We look forward to working with you!
 ## Engage
 
 ### Mailing list(s)
-We discuss design and implementation issues on the dev@beam.apache.org mailing list, which is archived [here](https://lists.apache.org/list.html?dev@beam.apache.org). Join by emailing [`dev-subscribe@beam.apache.org`](mailto:dev-subscribe@beam.apache.org).
+We discuss design and implementation issues on the `dev@beam.apache.org mailing list, which is archived [here](https://lists.apache.org/list.html?dev@beam.apache.org). Join by emailing [`dev-subscribe@beam.apache.org`](mailto:dev-subscribe@beam.apache.org).
 
 If interested, you can also join the other [mailing lists]({{ site.baseurl }}/get-started/support/).
 
@@ -110,36 +110,36 @@ Depending on your preferred development environment, you may need to prepare it
 ###### Enable Annotation Processing
 To configure annotation processing in IntelliJ:
 
-1. Open Annotation Processors Settings dialog box by going to Settings -> Build, Execution, Deployment -> Compiler -> Annotation Processors.
+1. Open Annotation Processors Settings dialog box by going to Settings -> Build, Execution, Deployment -> Compiler -> Annotation Processors
 1. Select the following buttons:
    * "Enable annotation processing"
    * "Obtain processors from project classpath"
    * "Store generated sources relative to: _Module content root_"
 1. Set the generated source directories to be equal to the Maven directories:
-   * Set "Production sources directory:" to "target/generated-sources/annotations".
-   * Set "Test sources directory:" to "target/generated-test-sources/test-annotations".
-1. Click "OK".
+   * Set "Production sources directory:" to `target/generated-sources/annotations`
+   * Set "Test sources directory:" to `target/generated-test-sources/test-annotations`
+1. Click "OK"
 
 ###### Checkstyle
 IntelliJ supports checkstyle within the IDE using the Checkstyle-IDEA plugin.
 
-1. Install the "Checkstyle-IDEA" plugin from the IntelliJ plugin repository.
-1. Configure the plugin by going to Settings -> Other Settings -> Checkstyle.
+1. Install the "Checkstyle-IDEA" plugin from the IntelliJ plugin repository
+1. Configure the plugin by going to Settings -> Other Settings -> Checkstyle
 1. Set Checkstyle version to the same as in `/pom.xml` (e.g. 6.19)
-1. Set the "Scan Scope" to "Only Java sources (including tests)".
+1. Set the "Scan Scope" to "Only Java sources (including tests)"
 1. In the "Configuration File" pane, add a new configuration using the plus icon:
-    1. Set the "Description" to "Beam".
+    1. Set the "Description" to "Beam"
     1. Select "Use a local Checkstyle file", and point it to
       `sdks/java/build-tools/src/main/resources/beam/checkstyle.xml` within
-      your repository.
+      your repository
     1. Check the box for "Store relative to project location", and click
-      "Next".
+      "Next"
     1. Configure the `checkstyle.suppressions.file` property value to
-      `suppressions.xml`, and click "Next", then "Finish".
+      `suppressions.xml`, and click "Next", then "Finish"
 1. Select "Beam" as the only active configuration file, and click "Apply" and
-   "OK".
+   "OK"
 1. Checkstyle will now give warnings in the editor for any Checkstyle
-   violations.
+   violations
 
 You can also scan an entire module by opening the Checkstyle tools window and
 clicking the "Check Module" button. The scan should report no errors.
@@ -151,13 +151,13 @@ modules as they are not configured for Checkstyle validation.
 IntelliJ supports code styles within the IDE. Use one of the following to ensure your code style
 matches the project's checkstyle enforcements.
 
-1. (Option 1) Configure IntelliJ to use "beam-codestyle.xml".
-    1. Go to Settings -> Code Style -> Java.
-    1. Click the cogwheel icon next to 'Scheme' and select Import Scheme -> Eclipse XML Profile.
-    1. Select "sdks/java/build-tools/src/main/resources/beam/beam-codestyle.xml".
-    1. Click "OK".
-    1. Click "Apply" and "OK".
-1. (Option 2) Install [Google Java Format plugin](https://plugins.jetbrains.com/plugin/8527-google-java-format).
+1. (Option 1) Configure IntelliJ to use `beam-codestyle.xml`
+    1. Go to Settings -> Code Style -> Java
+    1. Click the cogwheel icon next to 'Scheme' and select Import Scheme -> Eclipse XML Profile
+    1. Select `sdks/java/build-tools/src/main/resources/beam/beam-codestyle.xml`
+    1. Click "OK"
+    1. Click "Apply" and "OK"
+1. (Option 2) Install [Google Java Format plugin](https://plugins.jetbrains.com/plugin/8527-google-java-format)
 
 ##### Eclipse
 
@@ -197,21 +197,21 @@ Eclipse supports checkstyle within the IDE using the Checkstyle plugin.
 
 1. Install the [Checkstyle plugin](https://marketplace.eclipse.org/content/checkstyle-plug).
 1. Configure Checkstyle plugin by going to Preferences - Checkstyle.
-    1. Click "New...".
-    1. Select "External Configuration File" for type.
-    1. Click "Browse..." and select "sdks/java/build-tools/src/main/resources/beam/checkstyle.xml".
-    1. Enter "Beam Checks" under "Name:".
-    1. Click "OK", then "OK".
+    1. Click "New..."
+    1. Select "External Configuration File" for type
+    1. Click "Browse..." and select `sdks/java/build-tools/src/main/resources/beam/checkstyle.xml`
+    1. Enter "Beam Checks" under "Name:"
+    1. Click "OK", then "OK"
 
 ###### Code Style
 Eclipse supports code styles within the IDE. Use one of the following to ensure your code style
 matches the project's checkstyle enforcements.
 
-1. (Option 1) Configure Eclipse to use "beam-codestyle.xml".
-    1. Go to Preferences -> Java -> Code Style -> Formatter.
-    1. Click "Import..." and select "sdks/java/build-tools/src/main/resources/beam/beam-codestyle.xml".
-    1. Click "Apply" and "OK".
-1. (Option 2) Install [Google Java Format plugin](https://github.com/google/google-java-format#eclipse).
+1. (Option 1) Configure Eclipse to use `beam-codestyle.xml`
+    1. Go to Preferences -> Java -> Code Style -> Formatter
+    1. Click "Import..." and select `sdks/java/build-tools/src/main/resources/beam/beam-codestyle.xml`
+    1. Click "Apply" and "OK"
+1. (Option 2) Install [Google Java Format plugin](https://github.com/google/google-java-format#eclipse)
 
 ### Create a branch in your fork
 You’ll work on your contribution in a branch in your own (forked) repository. Create a local branch, initialized with the state of the branch you expect your changes to be merged into. Keep in mind that we use several branches, including `master`, feature-specific, and release-specific branches. If you are unsure, initialize with the state of the `master` branch.

-- 
To stop receiving notification emails like this one, please contact
"commits@beam.apache.org" <co...@beam.apache.org>.

[beam-site] 04/04: This closes #331

Posted by me...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a commit to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit 4a9f0967fca7ea188a1a9a58f0a4bcdce58ac31a
Merge: 94b2026 bf28981
Author: Mergebot <me...@apache.org>
AuthorDate: Tue Nov 7 16:46:56 2017 +0000

    This closes #331

 src/contribute/contribution-guide.md | 67 ++++++++++++++++++------------------
 1 file changed, 34 insertions(+), 33 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@beam.apache.org" <co...@beam.apache.org>.

[beam-site] 03/04: Address https://github.com/apache/beam-site/pull/331#discussion_r144906095

Posted by me...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a commit to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit bf28981547f9377881a32adedbd7beaf967d6ab4
Author: wtanaka.com <wt...@users.noreply.github.com>
AuthorDate: Tue Oct 17 20:30:10 2017 -1000

    Address
    https://github.com/apache/beam-site/pull/331#discussion_r144906095
---
 src/contribute/contribution-guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/contribute/contribution-guide.md b/src/contribute/contribution-guide.md
index bd96f24..2db0767 100644
--- a/src/contribute/contribution-guide.md
+++ b/src/contribute/contribution-guide.md
@@ -33,7 +33,7 @@ We look forward to working with you!
 ## Engage
 
 ### Mailing list(s)
-We discuss design and implementation issues on the `dev@beam.apache.org mailing list, which is archived [here](https://lists.apache.org/list.html?dev@beam.apache.org). Join by emailing [`dev-subscribe@beam.apache.org`](mailto:dev-subscribe@beam.apache.org).
+We discuss design and implementation issues on the `dev@beam.apache.org` mailing list, which is archived [here](https://lists.apache.org/list.html?dev@beam.apache.org). Join by emailing [`dev-subscribe@beam.apache.org`](mailto:dev-subscribe@beam.apache.org).
 
 If interested, you can also join the other [mailing lists]({{ site.baseurl }}/get-started/support/).
 

-- 
To stop receiving notification emails like this one, please contact
"commits@beam.apache.org" <co...@beam.apache.org>.

[beam-site] 01/04: Update IntelliJ Checkstyle instructions

Posted by me...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a commit to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit 7fc0ff33506164c43a32424bf24916c3547bc749
Author: wtanaka.com <wt...@users.noreply.github.com>
AuthorDate: Sat Oct 7 17:13:43 2017 -1000

    Update IntelliJ Checkstyle instructions
    
    to downgrade checkstyle version to match pom.xml
---
 src/contribute/contribution-guide.md | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/contribute/contribution-guide.md b/src/contribute/contribution-guide.md
index 53ce4ee..4d70371 100644
--- a/src/contribute/contribution-guide.md
+++ b/src/contribute/contribution-guide.md
@@ -125,16 +125,17 @@ IntelliJ supports checkstyle within the IDE using the Checkstyle-IDEA plugin.
 
 1. Install the "Checkstyle-IDEA" plugin from the IntelliJ plugin repository.
 1. Configure the plugin by going to Settings -> Other Settings -> Checkstyle.
+1. Set Checkstyle version to the same as in `/pom.xml` (e.g. 6.19)
 1. Set the "Scan Scope" to "Only Java sources (including tests)".
 1. In the "Configuration File" pane, add a new configuration using the plus icon:
     1. Set the "Description" to "Beam".
     1. Select "Use a local Checkstyle file", and point it to
-      "sdks/java/build-tools/src/main/resources/beam/checkstyle.xml" within
+      `sdks/java/build-tools/src/main/resources/beam/checkstyle.xml` within
       your repository.
     1. Check the box for "Store relative to project location", and click
       "Next".
-    1. Configure the "checkstyle.suppressions.file" property value to
-      "suppressions.xml", and click "Next", then "Finish".
+    1. Configure the `checkstyle.suppressions.file` property value to
+      `suppressions.xml`, and click "Next", then "Finish".
 1. Select "Beam" as the only active configuration file, and click "Apply" and
    "OK".
 1. Checkstyle will now give warnings in the editor for any Checkstyle

-- 
To stop receiving notification emails like this one, please contact
"commits@beam.apache.org" <co...@beam.apache.org>.