Error with Maven configure

When I try to update the project on I get an error “unable to configure ‘projectname’”. Here is my pom.xml file:

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.camunda.bpm.getstarted</groupId>
  <artifactId>reimbursement-request</artifactId>
  <version>0.1.0-SNAPSHOT</version>
  <packaging>war</packaging>
  
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.camunda.bpm</groupId>
        <artifactId>camunda-bom</artifactId>
        <version>7.3.0</version>
        <scope>import</scope>
        <type>pom</type>
      </dependency>
    </dependencies>
  </dependencyManagement>
 
  <dependencies>
    <dependency>
      <groupId>org.camunda.bpm</groupId>
      <artifactId>camunda-engine</artifactId>
      <scope>provided</scope>
    </dependency>
 
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.0.1</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
 
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-war-plugin</artifactId>
        <version>2.3</version>
        <configuration>
          <failOnMissingWebXml>false</failOnMissingWebXml>
        </configuration>
      </plugin>
    </plugins>
  </build>
 
</project>

Hi @mhurten,

Did you try to add <name>my awesome project</name> to your pom?

Cheers,
Christian

Hi Christian,

Thank you for your reply.
No luck for the project, I don’t know why this is not working.

Cheers,

Michael

What is your development environment? What version of maven are you using? Why are you using such an old version of Camunda?

I using eclipse IDE for development. As for the version of Camunda, I copied the pom.xml file from the camunda.org/getting started website.

Are you using the “packaged” Eclipse (now deprecated) that Camunda used to support? It’s a pre-configured Kepler instance that you can find if you poke around the site.

Firstly, I would bump that version number to something a bit new like 7.6.X or 7.7.X.

I don’t know anything about Spring, but your pom.xml file doesn’t look obviously wrong. It’s a bit sparse, but that’s not necessarily wrong. Have you enable Maven debugging mode using the “-x” option? I’ve never used it, and you might need to use Maven at the command line to do so.

Finally, you might insert the following into the properties section:

The Name of My Project

Hi @mhurten,
can you please add a link to where you copied this from? I can’t find it myself in the Getting Started section and this should probably be updated.

Thanks and best regards,
Mat

Hi Matthijs,

This is the link I used :

https://docs.camunda.org/stable/guides/getting-started-guides/developing-process-applications/

Kind regards,

Michael

Hi Michael,

Thanks for your response.

That’s a pretty old guide. I strongly recommend to use this one: https://docs.camunda.org/get-started/bpmn20/

Best regards,
Mat