Good all the time of day! There is a little problem. I create an appframework application under maven. I write a plugin for building in the jar:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>com.international.mainclass</mainClass> </manifest> </archive> </configuration> </plugin> then I start frying and I write an error: can't find main-class com.international.mainclass. what am I doing wrong?