i solve this problem. i think look at wrong place
the gradle is searching for "tools.jar" but it search in wrong place instead in your jdk installation folder the gradle search in your jre installation folder
the main problem is not
> Could not find net.minecraftforge:forge:1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3.
Searched in the following locations:
- file:/C:/Users/[username]/.gradle/caches/forge_gradle/bundeled_repo/net/minecraftforge/forge/1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3/forge-1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3.pom
- file:/C:/Users/[username]/.gradle/caches/forge_gradle/bundeled_repo/net/minecraftforge/forge/1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3/forge-1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3.jar
- https://files.minecraftforge.net/maven/net/minecraftforge/forge/1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3/forge-1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3.pom
- https://files.minecraftforge.net/maven/net/minecraftforge/forge/1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3/forge-1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3.jar
- https://libraries.minecraft.net/net/minecraftforge/forge/1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3/forge-1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3.jar - https://repo.maven.apache.org/maven2/net/minecraftforge/forge/1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3/forge-1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3.pom
- https://repo.maven.apache.org/maven2/net/minecraftforge/forge/1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3/forge-1.14.4-28.0.24_mapped_snapshot_20190719-1.14.3.jar
but the main problem is the gradle cannot find the tools.jar
step to fix it
1. copy all file in [your jdk installation folder]\lib\*.* to [your jre installation folder]\lib\ (i recommended to copy all not only "tools.jar"(who know it depent other library))
2. restart cmd
3. run your gradle task
and it maybe fixed
story how i solved it:
one day i run a minecraft forge gradle task and it results BUILD UNSUCCESFUL error an i read everything that show in the cmd from when i type the "gradlew build" command to the end and i find the main cause of the problem is the gradle cannot find the tools.jar(to find this i set screen buffer height to 9000 and width 167) and i have installed the java JDK and i think it maybe search in my JRE folder to test if this true i copy all files and folder in [jdk installation fold]\lib\*.* to [jre installation folder]\lib\ and it work and i post this to this forum