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

[sling-org-apache-sling-performance] branch master updated (ed7bac8 -> 568336f)

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

rombert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-performance.git.


    from ed7bac8  SLING-7213 - Add a default .gitignore file to every module
     new cb3bc40  Add missing license headers
     new c523b3e  Fix more copyright headers
     new b36c54b  Fix dependencies
     new 568336f  Ignore target directory in modules as well

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:
 .gitignore                                             |  2 +-
 .../apache/sling/performance/IdentifiableTestCase.java | 16 ++++++++++++++++
 .../sling/performance/IdentifiableTestClass.java       | 16 ++++++++++++++++
 .../org/apache/sling/performance/ReportLogger.java     | 18 +++++++++++++++++-
 .../performance/annotation/PerformanceTestFactory.java | 16 ++++++++++++++++
 .../performance/annotation/PerformanceTestSuite.java   | 16 ++++++++++++++++
 jcr-resource-2.0.10/pom.xml                            |  2 +-
 jcr-resource-2.1.0/pom.xml                             |  2 +-
 jcr-resource-2.2.0/pom.xml                             |  2 +-
 jcr-resource-2.2.10/README.md                          |  3 ---
 {jcr-resource-2.2.0 => jcr-resource-2.3.0}/README.md   |  2 +-
 {jcr-resource-2.2.10 => jcr-resource-2.3.0}/pom.xml    | 12 ++++++------
 .../org/apache/sling/performance/PerformanceTest.java  |  0
 pom.xml                                                | 14 +++++++++++++-
 tests/pom.xml                                          |  4 ++--
 15 files changed, 107 insertions(+), 18 deletions(-)
 delete mode 100644 jcr-resource-2.2.10/README.md
 copy {jcr-resource-2.2.0 => jcr-resource-2.3.0}/README.md (59%)
 rename {jcr-resource-2.2.10 => jcr-resource-2.3.0}/pom.xml (91%)
 rename {jcr-resource-2.2.10 => jcr-resource-2.3.0}/src/test/java/org/apache/sling/performance/PerformanceTest.java (100%)

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

[sling-org-apache-sling-performance] 01/04: Add missing license headers

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-performance.git

commit cb3bc40cec72985e64e5994e7ae012984b8f10ff
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Thu Nov 16 23:32:59 2017 +0200

    Add missing license headers
---
 .../apache/sling/performance/IdentifiableTestCase.java | 16 ++++++++++++++++
 .../sling/performance/IdentifiableTestClass.java       | 16 ++++++++++++++++
 .../org/apache/sling/performance/ReportLogger.java     | 18 +++++++++++++++++-
 .../performance/annotation/PerformanceTestFactory.java | 16 ++++++++++++++++
 .../performance/annotation/PerformanceTestSuite.java   | 16 ++++++++++++++++
 5 files changed, 81 insertions(+), 1 deletion(-)

diff --git a/base/src/main/java/org/apache/sling/performance/IdentifiableTestCase.java b/base/src/main/java/org/apache/sling/performance/IdentifiableTestCase.java
index cfae459..b6965da 100644
--- a/base/src/main/java/org/apache/sling/performance/IdentifiableTestCase.java
+++ b/base/src/main/java/org/apache/sling/performance/IdentifiableTestCase.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.apache.sling.performance;
 
 /**
diff --git a/base/src/main/java/org/apache/sling/performance/IdentifiableTestClass.java b/base/src/main/java/org/apache/sling/performance/IdentifiableTestClass.java
index b7c78d0..6c3c033 100644
--- a/base/src/main/java/org/apache/sling/performance/IdentifiableTestClass.java
+++ b/base/src/main/java/org/apache/sling/performance/IdentifiableTestClass.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.apache.sling.performance;
 
 /**
diff --git a/base/src/main/java/org/apache/sling/performance/ReportLogger.java b/base/src/main/java/org/apache/sling/performance/ReportLogger.java
index d93109b..8db09d6 100644
--- a/base/src/main/java/org/apache/sling/performance/ReportLogger.java
+++ b/base/src/main/java/org/apache/sling/performance/ReportLogger.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.apache.sling.performance;
 
 import java.io.File;
@@ -424,4 +440,4 @@ public class ReportLogger {
         }
         return failures;
     }
-}
\ No newline at end of file
+}
diff --git a/base/src/main/java/org/apache/sling/performance/annotation/PerformanceTestFactory.java b/base/src/main/java/org/apache/sling/performance/annotation/PerformanceTestFactory.java
index b7341b3..0c03154 100644
--- a/base/src/main/java/org/apache/sling/performance/annotation/PerformanceTestFactory.java
+++ b/base/src/main/java/org/apache/sling/performance/annotation/PerformanceTestFactory.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.apache.sling.performance.annotation;
 
 import java.lang.annotation.ElementType;
diff --git a/base/src/main/java/org/apache/sling/performance/annotation/PerformanceTestSuite.java b/base/src/main/java/org/apache/sling/performance/annotation/PerformanceTestSuite.java
index 54a1837..93a973e 100644
--- a/base/src/main/java/org/apache/sling/performance/annotation/PerformanceTestSuite.java
+++ b/base/src/main/java/org/apache/sling/performance/annotation/PerformanceTestSuite.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.apache.sling.performance.annotation;
 
 import java.lang.annotation.Retention;

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

[sling-org-apache-sling-performance] 02/04: Fix more copyright headers

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-performance.git

commit c523b3e263fdd97d8ff530e331c24a86824dd8ea
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Thu Nov 16 23:44:07 2017 +0200

    Fix more copyright headers
---
 pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/pom.xml b/pom.xml
index 4aebe03..a7a1dd6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,4 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+    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.
+-->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     
     <modelVersion>4.0.0</modelVersion>

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

[sling-org-apache-sling-performance] 03/04: Fix dependencies

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-performance.git

commit b36c54b47ec88484ce856d446462fce505657069
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Fri Nov 17 00:52:16 2017 +0200

    Fix dependencies
---
 jcr-resource-2.0.10/pom.xml                                  |  2 +-
 jcr-resource-2.1.0/pom.xml                                   |  2 +-
 jcr-resource-2.2.0/pom.xml                                   |  2 +-
 {jcr-resource-2.2.10 => jcr-resource-2.3.0}/README.md        |  2 +-
 {jcr-resource-2.2.10 => jcr-resource-2.3.0}/pom.xml          | 12 ++++++------
 .../java/org/apache/sling/performance/PerformanceTest.java   |  0
 pom.xml                                                      |  2 +-
 tests/pom.xml                                                |  4 ++--
 8 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/jcr-resource-2.0.10/pom.xml b/jcr-resource-2.0.10/pom.xml
index 05b779f..29cea92 100644
--- a/jcr-resource-2.0.10/pom.xml
+++ b/jcr-resource-2.0.10/pom.xml
@@ -34,7 +34,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.performance.base</artifactId>
-            <version>${project.version}</version>
+            <version>1.0.3-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/jcr-resource-2.1.0/pom.xml b/jcr-resource-2.1.0/pom.xml
index 994019e..17655d9 100644
--- a/jcr-resource-2.1.0/pom.xml
+++ b/jcr-resource-2.1.0/pom.xml
@@ -35,7 +35,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.performance.base</artifactId>
-            <version>${project.version}</version>
+            <version>1.0.3-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/jcr-resource-2.2.0/pom.xml b/jcr-resource-2.2.0/pom.xml
index b6866f9..2a77093 100644
--- a/jcr-resource-2.2.0/pom.xml
+++ b/jcr-resource-2.2.0/pom.xml
@@ -35,7 +35,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.performance.base</artifactId>
-            <version>${project.version}</version>
+            <version>1.0.3-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/jcr-resource-2.2.10/README.md b/jcr-resource-2.3.0/README.md
similarity index 59%
rename from jcr-resource-2.2.10/README.md
rename to jcr-resource-2.3.0/README.md
index c43d433..b4e634e 100644
--- a/jcr-resource-2.2.10/README.md
+++ b/jcr-resource-2.3.0/README.md
@@ -1,3 +1,3 @@
-# Apache Sling Performance Test - JCR Resource 2.2.10
+# Apache Sling Performance Test - JCR Resource 2.3.0
 
 This module is part of the [Apache Sling](https://sling.apache.org) project.
diff --git a/jcr-resource-2.2.10/pom.xml b/jcr-resource-2.3.0/pom.xml
similarity index 91%
rename from jcr-resource-2.2.10/pom.xml
rename to jcr-resource-2.3.0/pom.xml
index 927edf4..1fc34cc 100644
--- a/jcr-resource-2.2.10/pom.xml
+++ b/jcr-resource-2.3.0/pom.xml
@@ -20,10 +20,10 @@
         <relativePath/>
     </parent>
 
-    <artifactId>org.apache.sling.performance.jcr.resource-2.2.10</artifactId>
+    <artifactId>org.apache.sling.performance.jcr.resource-2.3.0</artifactId>
     <version>0.0.1-SNAPSHOT</version>
 
-    <name>Apache Sling Performance Test - JCR Resource 2.2.10</name>
+    <name>Apache Sling Performance Test - JCR Resource 2.3.0</name>
 
     <scm>
         <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-performance.git</connection>
@@ -35,25 +35,25 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.performance.base</artifactId>
-            <version>${project.version}</version>
+            <version>1.0.3-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.jcr.resource</artifactId>
-            <version>2.2.9-SNAPSHOT</version>
+            <version>2.3.0</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.api</artifactId>
-            <version>2.4.3-SNAPSHOT</version>
+            <version>2.5.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.resourceresolver</artifactId>
-            <version>1.1.1-SNAPSHOT</version>
+            <version>1.1.2</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/jcr-resource-2.2.10/src/test/java/org/apache/sling/performance/PerformanceTest.java b/jcr-resource-2.3.0/src/test/java/org/apache/sling/performance/PerformanceTest.java
similarity index 100%
rename from jcr-resource-2.2.10/src/test/java/org/apache/sling/performance/PerformanceTest.java
rename to jcr-resource-2.3.0/src/test/java/org/apache/sling/performance/PerformanceTest.java
diff --git a/pom.xml b/pom.xml
index a7a1dd6..eee59f4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,7 +36,7 @@
         <module>jcr-resource-2.0.10</module>
         <module>jcr-resource-2.1.0</module>
         <module>jcr-resource-2.2.0</module>
-        <module>jcr-resource-2.2.10</module>
+        <module>jcr-resource-2.3.0</module>
         <module>tests</module>
     </modules>
 </project>
diff --git a/tests/pom.xml b/tests/pom.xml
index d8a616e..db07e21 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -43,7 +43,7 @@
 		<dependency>
 			<groupId>org.apache.sling</groupId>
 			<artifactId>org.apache.sling.performance.base</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>1.0.3-SNAPSHOT</version>
 		</dependency>
 	</dependencies>
 	<build>
@@ -57,4 +57,4 @@
             </plugin>
         </plugins>
     </build>
-</project>
\ No newline at end of file
+</project>

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

[sling-org-apache-sling-performance] 04/04: Ignore target directory in modules as well

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-performance.git

commit 568336f5b985ed6bebc6c8370a34784bcb989188
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Fri Nov 17 00:52:42 2017 +0200

    Ignore target directory in modules as well
---
 .gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 5b783ed..4eadebe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-/target
+target/
 .idea
 .classpath
 .metadata

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