Skip to content

Commit 2f843cc

Browse files
committed
Update license and attributions
1 parent b34e2d8 commit 2f843cc

File tree

4 files changed

+50
-36
lines changed

4 files changed

+50
-36
lines changed

LICENSE.txt

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
1-
BSD License
1+
MIT License
22

3-
Copyright (c) 2020, John Hendrikx All rights reserved.
3+
Copyright (c) 2025 John Hendrikx
44

5-
Redistribution and use in source and binary forms, with or without modification,
6-
are permitted provided that the following conditions are met:
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
711

8-
Redistributions of source code must retain the above copyright notice, this list
9-
of conditions and the following disclaimer. Redistributions in binary form must
10-
reproduce the above copyright notice, this list of conditions and the following
11-
disclaimer in the documentation and/or other materials provided with the
12-
distribution.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
1314

14-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
15-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
18-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
21-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
22-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23-
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

NOTICE.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Dart SCSS Compiler
2+
==================
3+
This project uses Dart SCSS Compiler, which is licensed under the MIT License.
4+
5+
Copyright (c) 2010-2025, The Dart SCSS Compiler Authors
6+
The Dart SCSS Compiler is available at: https://github.com/sass/dart-sass
7+
8+
MIT License:
9+
-------------
10+
Permission is hereby granted, free of charge, to any person obtaining a copy
11+
of this software and associated documentation files (the "Software"), to deal
12+
in the Software without restriction, including without limitation the rights
13+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14+
copies of the Software, and to permit persons to whom the Software is
15+
furnished to do so, subject to the following conditions:
16+
17+
The above copyright notice and this permission notice shall be included in all
18+
copies or substantial portions of the Software.
19+
20+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26+
THE SOFTWARE.

README.markdown

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.int4.scss/scss-compiler/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.int4.scss/scss-compiler)
44
[![Build Status](https://github.com/int4-org/SCSS/actions/workflows/maven.yml/badge.svg?branch=master)](https://github.com/int4-org/SCSS/actions)
55
[![Coverage](https://codecov.io/gh/int4-org/SCSS/branch/master/graph/badge.svg?token=QCNNRFYF98)](https://codecov.io/gh/int4-org/SCSS)
6-
[![License](https://img.shields.io/badge/License-BSD_2--Clause-orange.svg)](https://opensource.org/licenses/BSD-2-Clause)
6+
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
77
[![javadoc](https://javadoc.io/badge2/org.int4.scss/parent/javadoc.svg)](https://javadoc.io/doc/org.int4.scss/parent)
88

99
A compiler for SCSS files that can be easily used from Java code. It uses the
@@ -118,21 +118,10 @@ public class CustomErrorHandlingExample {
118118

119119
This allows you to log or handle issues in a way that suits your application's needs while maintaining control over how errors are propagated.
120120

121-
# BSD License
122-
123-
Copyright (c) 2025, John Hendrikx
124-
All rights reserved.
125-
126-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
127-
128-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
129-
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
130-
131-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
132-
133121
# Dependencies and Acknowledgments
134122

135123
### Dart Sass
136124

137-
License: MIT License
138-
https://github.com/sass/dart-sass
125+
- **License**: MIT License
126+
- **URL**: [https://github.com/sass/dart-sass](https://github.com/sass/dart-sass)
127+
- **Description**: This project includes the Dart SCSS compiler binaries, which are licensed under the MIT License.

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@
2424

2525
<licenses>
2626
<license>
27-
<name>The BSD 2-Clause License</name>
28-
<url>http://opensource.org/licenses/BSD-2-Clause</url>
27+
<name>MIT License</name>
28+
<url>https://opensource.org/licenses/MIT</url>
2929
<distribution>repo</distribution>
30+
<comments>This project is licensed under the MIT License. Dart SCSS compiler binaries included in this project are also licensed under the MIT License.</comments>
3031
</license>
3132
</licenses>
3233

0 commit comments

Comments
 (0)