1
0
Fork 0

introduce rover-commands module and update versions

This commit is contained in:
Xavier Fontanet 2024-06-22 19:03:12 +02:00
parent cae3fa399e
commit 6e966919d3
4 changed files with 33 additions and 4 deletions

View File

@ -5,11 +5,12 @@
<parent>
<artifactId>mars-rover</artifactId>
<groupId>cat.hack3.codingtests</groupId>
<version>1.0-SNAPSHOT</version>
<version>10.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>mars-station</artifactId>
<version>2.0</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>

View File

@ -7,11 +7,12 @@
<groupId>cat.hack3.codingtests</groupId>
<artifactId>mars-rover</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<version>10.0</version>
<modules>
<module>mars-station</module>
<module>user-interface-console</module>
<module>rover-commands</module>
</modules>
<properties>

27
rover-commands/pom.xml Normal file
View File

@ -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>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>mars-rover</artifactId>
<groupId>cat.hack3.codingtests</groupId>
<version>1.0-SNAPSHOT</version>
<version>10.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@ -20,7 +20,7 @@
<dependency>
<groupId>cat.hack3.codingtests</groupId>
<artifactId>mars-station</artifactId>
<version>1.0-SNAPSHOT</version>
<version>2.0</version>
</dependency>
</dependencies>