How to include jar in Maven Netbeans proj that doesnt exist in maven repo
问题 I am using Netbeans to build a Maven project, and have the JTidy java library as a dependency. It turns out JTidy doesnt exist in any maven repos, so I can't just add a "normal" depedency entry for it. What is the best way of handling dependencies to libraries in Maven projects that arent available on repos? I've currently tried adding it to my maven pom as such (after copying the jar to my projects /libs folder) <dependency> <groupId>org.w3c</groupId> <artifactId>org.w3c.tidy</artifactId>