You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@polygene.apache.org by ni...@apache.org on 2015/06/25 15:47:09 UTC

zest-qi4j git commit: License headers missing.

Repository: zest-qi4j
Updated Branches:
  refs/heads/develop 95ef1ffd8 -> 1019aa520


License headers missing.


Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/1019aa52
Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/1019aa52
Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/1019aa52

Branch: refs/heads/develop
Commit: 1019aa520d2bd568693195db2b0f05b4331981a9
Parents: 95ef1ff
Author: Niclas Hedhman <ni...@hedhman.org>
Authored: Thu Jun 25 15:46:49 2015 +0200
Committer: Niclas Hedhman <ni...@hedhman.org>
Committed: Thu Jun 25 15:46:49 2015 +0200

----------------------------------------------------------------------
 core/runtime/build.gradle                           |  9 ++++-----
 .../entitystore/ModuleEntityStoreUnitOfWork.java    | 16 ++++++++++++++++
 .../main/java/org/qi4j/spi/module/ModuleSpi.java    | 16 ++++++++++++++++
 3 files changed, 36 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/1019aa52/core/runtime/build.gradle
----------------------------------------------------------------------
diff --git a/core/runtime/build.gradle b/core/runtime/build.gradle
index 2a63168..e0e6bb9 100644
--- a/core/runtime/build.gradle
+++ b/core/runtime/build.gradle
@@ -17,18 +17,17 @@
  * under the License.
  */
 
-jar { manifest { name = "Qi4j Core Runtime"}}
+jar { manifest { name = "Qi4j Core Runtime" } }
 
 dependencies {
 
   provided libraries.osgi_core
 
-  compile project(":org.qi4j.core:org.qi4j.core.bootstrap")
+  compile project( ":org.qi4j.core:org.qi4j.core.bootstrap" )
   compile libraries.asm
   compile libraries.asm_util
   compile libraries.asm_commons
 
-  testCompile project(":org.qi4j.core:org.qi4j.core.testsupport")
-  testCompile project(":org.qi4j.libraries:org.qi4j.library.constraints")
-
+  testCompile project( ":org.qi4j.core:org.qi4j.core.testsupport" )
+  testCompile project( ":org.qi4j.libraries:org.qi4j.library.constraints" )
 }

http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/1019aa52/core/spi/src/main/java/org/qi4j/spi/entitystore/ModuleEntityStoreUnitOfWork.java
----------------------------------------------------------------------
diff --git a/core/spi/src/main/java/org/qi4j/spi/entitystore/ModuleEntityStoreUnitOfWork.java b/core/spi/src/main/java/org/qi4j/spi/entitystore/ModuleEntityStoreUnitOfWork.java
index 8e43144..5aae65b 100644
--- a/core/spi/src/main/java/org/qi4j/spi/entitystore/ModuleEntityStoreUnitOfWork.java
+++ b/core/spi/src/main/java/org/qi4j/spi/entitystore/ModuleEntityStoreUnitOfWork.java
@@ -1,3 +1,19 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* 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.
+*/
 package org.qi4j.spi.entitystore;
 
 import org.qi4j.api.entity.EntityDescriptor;

http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/1019aa52/core/spi/src/main/java/org/qi4j/spi/module/ModuleSpi.java
----------------------------------------------------------------------
diff --git a/core/spi/src/main/java/org/qi4j/spi/module/ModuleSpi.java b/core/spi/src/main/java/org/qi4j/spi/module/ModuleSpi.java
index 6555cdf..de4a788 100644
--- a/core/spi/src/main/java/org/qi4j/spi/module/ModuleSpi.java
+++ b/core/spi/src/main/java/org/qi4j/spi/module/ModuleSpi.java
@@ -1,3 +1,19 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* 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.
+*/
 package org.qi4j.spi.module;
 
 import org.qi4j.api.composite.TransientDescriptor;