FabricMC / fabric-example-mod

Example Fabric mod
Creative Commons Zero v1.0 Universal
1.67k stars 942 forks source link

genSources gradle task not working #165

Closed pete-the-dev closed 2 years ago

pete-the-dev commented 2 years ago

I have unpacked the example mod and configured the files as directed on the fabric wiki setup page. I am doing this on google cloud shell which is a linux/debian environment. I enter the directory and type the command "./gradlew genSources" and the gradle daemon starts and finishes with a "BUILD SUCCESSFUL" message. There are no sources under the /src directory, even after logging out and back in again. I have tried this many different ways with still no success. Please help?

altrisi commented 2 years ago

The src directory is for your mod's sources, genSources creates the minecraft sources for you to be able to browse them with javadoc and everything in your IDE.

pete-the-dev commented 2 years ago

Where would the sources be then?