You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2019/06/04 02:03:01 UTC

[sling-org-apache-sling-app-cms] branch master updated (33434d8 -> 26bab8e)

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

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


    from 33434d8  Adding latest release info
     new e0d13dd  Updating RAT to not flag binary files incorrectly
     new 26bab8e  Updating with the latest release info

The 2 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:
 core/pom.xml     | 24 ++++++++++++++++++++++++
 docs/releases.md |  3 +--
 pom.xml          | 30 ++++++++++++++++++++++++++++++
 3 files changed, 55 insertions(+), 2 deletions(-)


[sling-org-apache-sling-app-cms] 02/02: Updating with the latest release info

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

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

commit 26bab8ef00641e4d51367d61d632fee1c9b7bf9b
Author: Dan Klco <dk...@apache.org>
AuthorDate: Mon Jun 3 22:02:50 2019 -0400

    Updating with the latest release info
---
 docs/releases.md | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/docs/releases.md b/docs/releases.md
index a58eab4..0969199 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -19,14 +19,13 @@ Focus on continued improvements to user experience, including significant optimi
  * [View Release](https://github.com/apache/sling-org-apache-sling-app-cms/releases/org.apache.sling.cms-0.12.0)
  * [API JavaDoc](http://javadoc.io/doc/org.apache.sling/org.apache.sling.cms.api/0.12.0)
 
-
 ## 0.11.2
 
 Fixes issues in 0.11.0
 
  * [View Release](https://github.com/apache/sling-org-apache-sling-app-cms/releases/org.apache.sling.cms-0.11.2)
  * [API JavaDoc](http://javadoc.io/doc/org.apache.sling/org.apache.sling.cms.api/0.11.2)
- * [Documentation](https://github.com/apache/sling-org-apache-sling-app-cms/tree/A-SHA)
+ * [Documentation](https://github.com/apache/sling-org-apache-sling-app-cms/tree/d4bdcc313f78e882234d5ac9d9af64712c46c726)
 
 ## 0.11.0
 


[sling-org-apache-sling-app-cms] 01/02: Updating RAT to not flag binary files incorrectly

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

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

commit e0d13dd9adb98bf909c86cb09124ef69943c57b9
Author: Dan Klco <dk...@apache.org>
AuthorDate: Mon Jun 3 22:02:07 2019 -0400

    Updating RAT to not flag binary files incorrectly
---
 core/pom.xml | 24 ++++++++++++++++++++++++
 pom.xml      | 30 ++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/core/pom.xml b/core/pom.xml
index 01ff742..5d45aa9 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -60,6 +60,30 @@
                     <useSystemClassLoader>false</useSystemClassLoader>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <!-- Used by maven-remote-resources-plugin -->
+                        <exclude>src/main/appended-resources/META-INF/*</exclude>
+                        <!-- Generated by maven-remote-resources-plugin -->
+                        <exclude>velocity.log</exclude>
+                        <!-- don't check anything in target -->
+                        <exclude>target/*</exclude>
+                        <exclude>src/test/resources/*.pp*</exclude>
+                        <exclude>src/test/resources/*.do*</exclude>
+                    </excludes>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 
diff --git a/pom.xml b/pom.xml
index 5022bcd..1ed5ebd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -287,6 +287,36 @@
     </dependencyManagement>
 
     <build>
+        
+        
+
+<plugins>
+<plugin>
+<groupId>org.apache.rat</groupId>
+<artifactId>apache-rat-plugin</artifactId>
+<configuration>
+<excludes>
+ <!--   Used by maven-remote-resources-plugin  -->
+<exclude>src/main/appended-resources/META-INF/*</exclude>
+ <!--   Generated by maven-remote-resources-plugin  -->
+<exclude>velocity.log</exclude>
+ <!--  don't check anything in target  -->
+<exclude>target/*</exclude>
+    <exclude>**/target/*</exclude>
+</excludes>
+</configuration>
+<executions>
+<execution>
+<phase>verify</phase>
+<goals>
+<goal>check</goal>
+</goals>
+</execution>
+</executions>
+</plugin>
+</plugins>
+
+        
         <pluginManagement>
             <plugins>
                 <plugin>