MinecraftForge / ForgeGradle

Minecraft mod development framework used by Forge and FML for the gradle build system
GNU Lesser General Public License v2.1
522 stars 444 forks source link

Question: Which License is true? #632

Closed anatawa12 closed 5 years ago

anatawa12 commented 5 years ago

In the FG_1,2 branch, LICENSE file says that this software is released under LGPL 2.1 but ForgeGradle-1.2-20190215.223950-303.pom says EPL 1.0. which is the license for ForgeGradle 1.2?

srs-bsns commented 5 years ago

Looks like when FG was re-licenced in 2014 (https://github.com/MinecraftForge/ForgeGradle/commit/d57f4a22c9e554b21ef8c4812c95c8ef7550336b) there was an oversight about updating the licence in the configuration of the uploadArchives task in the build.gradle, which was then fixed in FG2 here: https://github.com/MinecraftForge/ForgeGradle/commit/85a3b579b5b4a9ffb35d52b4bc261b9e864364da

In any sense, the LGPL 2.1 licence in this repo, not the one in the POM, is the valid one.

anatawa12 commented 5 years ago

@srs-bsns thank you