introduce rover-commands module and update versions
This commit is contained in:
parent
cae3fa399e
commit
6e966919d3
|
@ -5,11 +5,12 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>mars-rover</artifactId>
|
<artifactId>mars-rover</artifactId>
|
||||||
<groupId>cat.hack3.codingtests</groupId>
|
<groupId>cat.hack3.codingtests</groupId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>10.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>mars-station</artifactId>
|
<artifactId>mars-station</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
|
|
3
pom.xml
3
pom.xml
|
@ -7,11 +7,12 @@
|
||||||
<groupId>cat.hack3.codingtests</groupId>
|
<groupId>cat.hack3.codingtests</groupId>
|
||||||
<artifactId>mars-rover</artifactId>
|
<artifactId>mars-rover</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>10.0</version>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>mars-station</module>
|
<module>mars-station</module>
|
||||||
<module>user-interface-console</module>
|
<module>user-interface-console</module>
|
||||||
|
<module>rover-commands</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<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">
|
||||||
|
<parent>
|
||||||
|
<artifactId>mars-rover</artifactId>
|
||||||
|
<groupId>cat.hack3.codingtests</groupId>
|
||||||
|
<version>10.0</version>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<artifactId>rover-commands</artifactId>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>cat.hack3.codingtests</groupId>
|
||||||
|
<artifactId>mars-station</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>mars-rover</artifactId>
|
<artifactId>mars-rover</artifactId>
|
||||||
<groupId>cat.hack3.codingtests</groupId>
|
<groupId>cat.hack3.codingtests</groupId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>10.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>cat.hack3.codingtests</groupId>
|
<groupId>cat.hack3.codingtests</groupId>
|
||||||
<artifactId>mars-station</artifactId>
|
<artifactId>mars-station</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>2.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue