I've been learning JavaCPP for a project using Eclipse, and I created a Java project for the application. But when I try to create a class in the /src/main/resources
directory, it can't find any folders and says "no entries available".
Asked
Active
Viewed 192 times
0

Mr. Polywhirl
- 42,981
- 12
- 84
- 132

hael
- 49
- 1
- 7
-
3First of all you need to crate maven project not java project (maven is a build tool for java). 2. /src/main/resources is a maven default location for resources - i.e. text files, icon images or any another files you application may need. 3. Please read javacpp manual i.e. README.md setp by step https://github.com/bytedeco/javacpp – Victor Gubin Oct 15 '20 at 16:08
-
See also [Maven](http://maven.apache.org/) - [using maven in eclipse IDE](https://www.vogella.com/tutorials/EclipseMaven/article.html) – Victor Gubin Oct 15 '20 at 16:09
-
It's actually easier to use the build plugin from Gradle JavaCPP: https://github.com/bytedeco/gradle-javacpp#getting-started – Samuel Audet Oct 16 '20 at 00:14