Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for LGPL (0.01 seconds)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/model/License.kt

        ),
        LGPL21(
            "LGPL 2.1",
            "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html",
            listOf(
                "GNU Lesser General Public License",
                "GNU Lesser General Public License, Version 2.1",
                "GNU Lesser General Public License, version 2.1",
                "LGPL-2.1-or-later",
            ),
        ),
        MIT(
            "MIT License",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 13:24:46 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  2. pom.xml

    	<licenses>
    		<license>
    			<name>GNU Lesser General Public License, version 2.1</name>
    			<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
    			<distribution>repo</distribution>
    		</license>
    	</licenses>
    	<organization>
    		<name>CodeLibs Project</name>
    		<url>https://www.codelibs.org/</url>
    	</organization>
    	<developers>
    		<developer>
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Mon Aug 25 14:34:10 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/LicenseAnalyzer.java

            new LicenseMatcher("EDL-1.0", true, false, Pattern.compile("Eclipse Distribution License - v 1.0", Pattern.DOTALL)),
            new LicenseMatcher("LGPL-2.1", true, true, Pattern.compile("GNU LESSER GENERAL PUBLIC LICENSE.*Version 2.1", Pattern.DOTALL)),
            new LicenseMatcher("LGPL-3.0", true, true, Pattern.compile("GNU LESSER GENERAL PUBLIC LICENSE.*Version 3", Pattern.DOTALL)),
            new LicenseMatcher("GeoLite", false, false,
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 27 00:12:58 GMT 2021
    - 12.8K bytes
    - Click Count (0)
  4. README.md

    3. Make your changes with appropriate tests
    4. Run `mvn clean test` to ensure all tests pass
    5. Submit a pull request
    
    ### License
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 09:24:52 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesTask.java

     * <pre>
     *   dependencyLicenses {
     *     mapping from: &#47;lucene-.*&#47;, to: "lucene"
     *   }
     * </pre>
     * Dependencies using licenses with stricter distribution requirements (such as LGPL)
     * require a SOURCES file as well. The file should include a URL to a source distribution
     * for the dependency. This artifact will be redistributed by us with the release to
     * comply with the license terms.
     */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 26 12:16:14 GMT 2021
    - 14.3K bytes
    - Click Count (0)
Back to Top