Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Each submodule has its own pom.xml They can be combined into one parent pom.xml.
parent pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project ...>
<artifactId>jdcs</artifactId>
...
<modules>
<module>net</module>
<module>gui</module>
<module>handler</module>
</modules>
...
<project ...>
<artifactId>gui</artifactId>
...
<parent>
<groupId>com.jdcs</groupId>
<artifactId>jdcs</artifactId>
<version>0.0.1</version>
</parent>
<dependencies>
<dependency>
<groupId>com.jdcs.net</groupId>
<artifactId>net</artifactId>
<version>${project.version}</version>
</dependency>
....
</dependencies>
...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question