I am new to Java and very new to Maven. Currently, I configured my project with the quick start archetype and got the project for compilation. I ran into problems trying to get the DCM4CHE libraries to work with this Maven project, since I'm not sure where they should go in the file structure, nor how they should be related to my project (I assume as a dependency in my pump, but I can't find the right way to do this). I have done a fair part of Googling on this issue and cannot find anything useful, or what will work, on how to connect them.
I am running Maven 3.3.9, Java 1.8.0.
My current pom.xml
<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>com.srgmri.apps</groupId>
<artifactId>hospital</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>hospital</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>9.3.9.M0</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.3.9.M0</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.38</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
and link to DCM4CHE libraries I'm trying to import.
Komodo IDE Maven .
, !