I'm having trouble referencing the Bootstrap library from the 'External Libraries' section in my project.
In my build.gradle file, I included:
compile group: 'org.webjars', name: 'bootstrap', version: '3.3.7'
This successfully downloaded the Bootstrap library. However, when attempting to reference it in an HTML file and using the copy path function, I end up with this:
C:\Users\Michael\.gradle\caches\modules-2\files-2.1\org.webjars\bootstrap\3.3.7\d6aeba80236573ed585baa657dac2b951caa8e7e\bootstrap-3.3.7.jar!\META-INF\resources\webjars\bootstrap\3.3.7\css\bootstrap.css
I also tried using the standard path (which didn't work):
<link rel="stylesheet" href="../css/bootstrap.min.css">
I am working on a Gradle project in IntelliJ.