From ec3e6194afbc5313742086eb7816bd0894c6d920 Mon Sep 17 00:00:00 2001 From: Francois Papon Date: Sun, 14 Jun 2020 17:27:37 +0200 Subject: [PATCH] [SHIRO-780] NOTICE files of shiro components don't match NOTICE in source code repository --- cache/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ config/core/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ config/ogdl/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ core/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ crypto/cipher/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ crypto/core/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ crypto/hash/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ event/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ lang/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../aspectj/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ samples/guice/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ samples/jaxrs/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../quickstart/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../spring-mvc/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ samples/spring/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ samples/web/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../aspectj/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../ehcache/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ support/guice/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../hazelcast/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ support/jaxrs/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ support/quartz/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ .../src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ support/spring/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ tools/hasher/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ web/src/main/resources/META-INF/NOTICE | 15 +++++++++++++++ 32 files changed, 480 insertions(+) create mode 100644 cache/src/main/resources/META-INF/NOTICE create mode 100644 config/core/src/main/resources/META-INF/NOTICE create mode 100644 config/ogdl/src/main/resources/META-INF/NOTICE create mode 100644 core/src/main/resources/META-INF/NOTICE create mode 100644 crypto/cipher/src/main/resources/META-INF/NOTICE create mode 100644 crypto/core/src/main/resources/META-INF/NOTICE create mode 100644 crypto/hash/src/main/resources/META-INF/NOTICE create mode 100644 event/src/main/resources/META-INF/NOTICE create mode 100644 lang/src/main/resources/META-INF/NOTICE create mode 100644 samples/aspectj/src/main/resources/META-INF/NOTICE create mode 100644 samples/guice/src/main/resources/META-INF/NOTICE create mode 100644 samples/jaxrs/src/main/resources/META-INF/NOTICE create mode 100644 samples/quickstart-guice/src/main/resources/META-INF/NOTICE create mode 100644 samples/quickstart/src/main/resources/META-INF/NOTICE create mode 100644 samples/servlet-plugin/src/main/resources/META-INF/NOTICE create mode 100644 samples/spring-boot-web/src/main/resources/META-INF/NOTICE create mode 100644 samples/spring-boot/src/main/resources/META-INF/NOTICE create mode 100644 samples/spring-hibernate/src/main/resources/META-INF/NOTICE create mode 100644 samples/spring-mvc/src/main/resources/META-INF/NOTICE create mode 100644 samples/spring/src/main/resources/META-INF/NOTICE create mode 100644 samples/web/src/main/resources/META-INF/NOTICE create mode 100644 support/aspectj/src/main/resources/META-INF/NOTICE create mode 100644 support/ehcache/src/main/resources/META-INF/NOTICE create mode 100644 support/guice/src/main/resources/META-INF/NOTICE create mode 100644 support/hazelcast/src/main/resources/META-INF/NOTICE create mode 100644 support/jaxrs/src/main/resources/META-INF/NOTICE create mode 100644 support/quartz/src/main/resources/META-INF/NOTICE create mode 100644 support/spring-boot/spring-boot-starter/src/main/resources/META-INF/NOTICE create mode 100644 support/spring-boot/spring-boot-web-starter/src/main/resources/META-INF/NOTICE create mode 100644 support/spring/src/main/resources/META-INF/NOTICE create mode 100644 tools/hasher/src/main/resources/META-INF/NOTICE create mode 100644 web/src/main/resources/META-INF/NOTICE diff --git a/cache/src/main/resources/META-INF/NOTICE b/cache/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/cache/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/config/core/src/main/resources/META-INF/NOTICE b/config/core/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/config/core/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/config/ogdl/src/main/resources/META-INF/NOTICE b/config/ogdl/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/config/ogdl/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/core/src/main/resources/META-INF/NOTICE b/core/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/core/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/crypto/cipher/src/main/resources/META-INF/NOTICE b/crypto/cipher/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/crypto/cipher/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/crypto/core/src/main/resources/META-INF/NOTICE b/crypto/core/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/crypto/core/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/crypto/hash/src/main/resources/META-INF/NOTICE b/crypto/hash/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/crypto/hash/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/event/src/main/resources/META-INF/NOTICE b/event/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/event/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/lang/src/main/resources/META-INF/NOTICE b/lang/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/lang/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/aspectj/src/main/resources/META-INF/NOTICE b/samples/aspectj/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/aspectj/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/guice/src/main/resources/META-INF/NOTICE b/samples/guice/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/guice/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/jaxrs/src/main/resources/META-INF/NOTICE b/samples/jaxrs/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/jaxrs/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/quickstart-guice/src/main/resources/META-INF/NOTICE b/samples/quickstart-guice/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/quickstart-guice/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/quickstart/src/main/resources/META-INF/NOTICE b/samples/quickstart/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/quickstart/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/servlet-plugin/src/main/resources/META-INF/NOTICE b/samples/servlet-plugin/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/servlet-plugin/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/spring-boot-web/src/main/resources/META-INF/NOTICE b/samples/spring-boot-web/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/spring-boot-web/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/spring-boot/src/main/resources/META-INF/NOTICE b/samples/spring-boot/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/spring-boot/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/spring-hibernate/src/main/resources/META-INF/NOTICE b/samples/spring-hibernate/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/spring-hibernate/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/spring-mvc/src/main/resources/META-INF/NOTICE b/samples/spring-mvc/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/spring-mvc/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/spring/src/main/resources/META-INF/NOTICE b/samples/spring/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/spring/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/samples/web/src/main/resources/META-INF/NOTICE b/samples/web/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/samples/web/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/support/aspectj/src/main/resources/META-INF/NOTICE b/support/aspectj/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/support/aspectj/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/support/ehcache/src/main/resources/META-INF/NOTICE b/support/ehcache/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/support/ehcache/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/support/guice/src/main/resources/META-INF/NOTICE b/support/guice/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/support/guice/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/support/hazelcast/src/main/resources/META-INF/NOTICE b/support/hazelcast/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/support/hazelcast/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/support/jaxrs/src/main/resources/META-INF/NOTICE b/support/jaxrs/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/support/jaxrs/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/support/quartz/src/main/resources/META-INF/NOTICE b/support/quartz/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/support/quartz/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/support/spring-boot/spring-boot-starter/src/main/resources/META-INF/NOTICE b/support/spring-boot/spring-boot-starter/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/support/spring-boot/spring-boot-starter/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/support/spring-boot/spring-boot-web-starter/src/main/resources/META-INF/NOTICE b/support/spring-boot/spring-boot-web-starter/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/support/spring-boot/spring-boot-web-starter/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/support/spring/src/main/resources/META-INF/NOTICE b/support/spring/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/support/spring/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/tools/hasher/src/main/resources/META-INF/NOTICE b/tools/hasher/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/tools/hasher/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org). diff --git a/web/src/main/resources/META-INF/NOTICE b/web/src/main/resources/META-INF/NOTICE new file mode 100644 index 0000000000..9d26a95ffb --- /dev/null +++ b/web/src/main/resources/META-INF/NOTICE @@ -0,0 +1,15 @@ +Apache Shiro +Copyright 2008-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The implementation for org.apache.shiro.util.SoftHashMap is based +on initial ideas from Dr. Heinz Kabutz's publicly posted version +available at http://www.javaspecialists.eu/archive/Issue015.html, +with continued modifications. + +Certain parts (StringUtils, IpAddressMatcher, etc.) of the source +code for this product was copied for simplicity and to reduce +dependencies from the source code developed by the Spring Framework +Project (http://www.springframework.org).