Home > Software engineering >  After maven build some class files are not created in jars
After maven build some class files are not created in jars

Time:10-15

After maven build some java files in which i have written code, are not created in jars. Why is this happening? I am just started using maven.

CodePudding user response:

Not easy to answer without your pom.xml but be sure about following items

  1. Check if any excluded class in pom config
  2. Be sure about all classes inside src/main/java or not
  3. run mvn clean install

And if you share pom.xml here we can answer easly.

  • Related