Skip to content

Commit 5273bb3

Browse files
committed
Check licenses in mixin-test-data
1 parent 7d574f5 commit 5273bb3

File tree

17 files changed

+232
-66
lines changed

17 files changed

+232
-66
lines changed

build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,14 @@ license {
368368
},
369369
)
370370
}
371+
register("mixinTestData") {
372+
files.from(
373+
project.fileTree(project.projectDir.resolve("mixin-test-data")) {
374+
include("**/*.java", "**/*.kts")
375+
exclude("**/build/**")
376+
},
377+
)
378+
}
371379
register("grammars") {
372380
files.from(project.fileTree("src/main/grammars"))
373381
}

mixin-test-data/build.gradle.kts

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
/*
2-
* Minecraft Dev for IntelliJ
2+
* Minecraft Development for IntelliJ
33
*
4-
* https://minecraftdev.org
4+
* https://mcdev.io/
55
*
6-
* Copyright (c) 2021 minecraft-dev
6+
* Copyright (C) 2024 minecraft-dev
77
*
8-
* MIT License
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published
10+
* by the Free Software Foundation, version 3.0 only.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
919
*/
1020

1121
plugins {

mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/accessor/BaseMixin.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
/*
2-
* Minecraft Dev for IntelliJ
2+
* Minecraft Development for IntelliJ
33
*
4-
* https://minecraftdev.org
4+
* https://mcdev.io/
55
*
6-
* Copyright (c) 2021 minecraft-dev
6+
* Copyright (C) 2024 minecraft-dev
77
*
8-
* MIT License
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published
10+
* by the Free Software Foundation, version 3.0 only.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
919
*/
1020

1121
package com.demonwav.mcdev.mixintestdata.accessor;

mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/accessor/BaseMixinInterface.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
/*
2-
* Minecraft Dev for IntelliJ
2+
* Minecraft Development for IntelliJ
33
*
4-
* https://minecraftdev.org
4+
* https://mcdev.io/
55
*
6-
* Copyright (c) 2021 minecraft-dev
6+
* Copyright (C) 2024 minecraft-dev
77
*
8-
* MIT License
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published
10+
* by the Free Software Foundation, version 3.0 only.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
919
*/
1020

1121
package com.demonwav.mcdev.mixintestdata.accessor;

mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/ambiguousReference/MixedIn.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
/*
2-
* Minecraft Dev for IntelliJ
2+
* Minecraft Development for IntelliJ
33
*
4-
* https://minecraftdev.org
4+
* https://mcdev.io/
55
*
6-
* Copyright (c) 2021 minecraft-dev
6+
* Copyright (C) 2024 minecraft-dev
77
*
8-
* MIT License
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published
10+
* by the Free Software Foundation, version 3.0 only.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
919
*/
1020

1121
package com.demonwav.mcdev.mixintestdata.ambiguousReference;

mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/GenericOneParam.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
/*
2-
* Minecraft Dev for IntelliJ
2+
* Minecraft Development for IntelliJ
33
*
4-
* https://minecraftdev.org
4+
* https://mcdev.io/
55
*
6-
* Copyright (c) 2021 minecraft-dev
6+
* Copyright (C) 2024 minecraft-dev
77
*
8-
* MIT License
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published
10+
* by the Free Software Foundation, version 3.0 only.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
919
*/
1020

1121
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;

mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/GenericTwoParams.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
/*
2-
* Minecraft Dev for IntelliJ
2+
* Minecraft Development for IntelliJ
33
*
4-
* https://minecraftdev.org
4+
* https://mcdev.io/
55
*
6-
* Copyright (c) 2021 minecraft-dev
6+
* Copyright (C) 2024 minecraft-dev
77
*
8-
* MIT License
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published
10+
* by the Free Software Foundation, version 3.0 only.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
919
*/
1020

1121
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;

mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInGeneric.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
/*
2-
* Minecraft Dev for IntelliJ
2+
* Minecraft Development for IntelliJ
33
*
4-
* https://minecraftdev.org
4+
* https://mcdev.io/
55
*
6-
* Copyright (c) 2021 minecraft-dev
6+
* Copyright (C) 2024 minecraft-dev
77
*
8-
* MIT License
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published
10+
* by the Free Software Foundation, version 3.0 only.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
919
*/
1020

1121
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;

mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInOuter.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
/*
2-
* Minecraft Dev for IntelliJ
2+
* Minecraft Development for IntelliJ
33
*
4-
* https://minecraftdev.org
4+
* https://mcdev.io/
55
*
6-
* Copyright (c) 2021 minecraft-dev
6+
* Copyright (C) 2024 minecraft-dev
77
*
8-
* MIT License
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published
10+
* by the Free Software Foundation, version 3.0 only.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
919
*/
1020

1121
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;

mixin-test-data/src/main/java/com/demonwav/mcdev/mixintestdata/invalidInjectorMethodSignatureFix/MixedInSimple.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
/*
2-
* Minecraft Dev for IntelliJ
2+
* Minecraft Development for IntelliJ
33
*
4-
* https://minecraftdev.org
4+
* https://mcdev.io/
55
*
6-
* Copyright (c) 2021 minecraft-dev
6+
* Copyright (C) 2024 minecraft-dev
77
*
8-
* MIT License
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published
10+
* by the Free Software Foundation, version 3.0 only.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
919
*/
1020

1121
package com.demonwav.mcdev.mixintestdata.invalidInjectorMethodSignatureFix;

0 commit comments

Comments
 (0)