You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2017/04/04 19:22:49 UTC

[1/2] geode git commit: GEODE-2748: fix xmlns to specify javaee instead of j2ee

Repository: geode
Updated Branches:
  refs/heads/develop 6ce55a055 -> 4a09e88b6


GEODE-2748: fix xmlns to specify javaee instead of j2ee


Project: http://git-wip-us.apache.org/repos/asf/geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/abb27b34
Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/abb27b34
Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/abb27b34

Branch: refs/heads/develop
Commit: abb27b34a0c5aa382a25a5506e4bb4f32c6605c4
Parents: 6ce55a0
Author: Kirk Lund <kl...@apache.org>
Authored: Mon Apr 3 11:54:53 2017 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Mon Apr 3 11:54:53 2017 -0700

----------------------------------------------------------------------
 geode-web/src/main/webapp/WEB-INF/web.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/abb27b34/geode-web/src/main/webapp/WEB-INF/web.xml
----------------------------------------------------------------------
diff --git a/geode-web/src/main/webapp/WEB-INF/web.xml b/geode-web/src/main/webapp/WEB-INF/web.xml
index 873d675..ff24e80 100644
--- a/geode-web/src/main/webapp/WEB-INF/web.xml
+++ b/geode-web/src/main/webapp/WEB-INF/web.xml
@@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 -->
-<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+<web-app xmlns="http://java.sun.com/xml/ns/javaee"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
          version="3.0">


[2/2] geode git commit: GEODE-2749: ignore bin/ and out/ which are commonly created by IDEs

Posted by kl...@apache.org.
GEODE-2749: ignore bin/ and out/ which are commonly created by IDEs


Project: http://git-wip-us.apache.org/repos/asf/geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/4a09e88b
Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/4a09e88b
Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/4a09e88b

Branch: refs/heads/develop
Commit: 4a09e88b691b3d6cffe551f4ff08648e62082475
Parents: abb27b3
Author: Kirk Lund <kl...@apache.org>
Authored: Mon Apr 3 12:40:24 2017 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Mon Apr 3 12:40:24 2017 -0700

----------------------------------------------------------------------
 .gitignore        | 5 +++--
 gradle/rat.gradle | 2 ++
 2 files changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/4a09e88b/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 38c8131..31d5996 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,7 +12,8 @@ build/
 .idea/
 build-eclipse/
 /tags
-
+out/
+bin/
 
 
 *.iml
@@ -27,4 +28,4 @@ build-eclipse/
 *.orig
 geode-spark-connector/**/target/
 geode-spark-connector/project/project/
-geode-pulse/screenshots/
\ No newline at end of file
+geode-pulse/screenshots/

http://git-wip-us.apache.org/repos/asf/geode/blob/4a09e88b/gradle/rat.gradle
----------------------------------------------------------------------
diff --git a/gradle/rat.gradle b/gradle/rat.gradle
index c97a9e9..7bea470 100644
--- a/gradle/rat.gradle
+++ b/gradle/rat.gradle
@@ -62,6 +62,8 @@ rat {
     '.idea/**',
     'geode-spark-connector/.idea/**',
     '**/tags',
+    '**/out/**',
+    '**/bin/**',
 
     // text files
     '**/*.fig',