Skip to content

Commit

Permalink
Refactor hint module
Browse files Browse the repository at this point in the history
  • Loading branch information
schananas committed Mar 22, 2022
1 parent 06193e4 commit 4b66122
Show file tree
Hide file tree
Showing 18 changed files with 10 additions and 9 deletions.
11 changes: 5 additions & 6 deletions exercises/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
<version>3.4.14</version>
</dependency>
<dependency>
Expand All @@ -47,25 +46,25 @@
<version>2.13.1</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<version>3.4.14</version>
<scope>compile</scope>
<groupId>com.github.schananas</groupId>
<artifactId>hint</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>com.github.schananas</groupId>
<artifactId>hints</artifactId>
<artifactId>hint</artifactId>
<version>1.0</version>
</plugin>
</plugins>
Expand Down
File renamed without changes.
6 changes: 4 additions & 2 deletions hints/pom.xml → hint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@
<version>1.0</version>
</parent>

<artifactId>hints</artifactId>
<packaging>maven-plugin</packaging>
<artifactId>hint</artifactId>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.version>3.8.5</maven.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -148,7 +150,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.2</version>
<configuration>
<debug>true</debug>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<modules>
<module>exercises</module>
<module>hints</module>
<module>hint</module>
</modules>

</project>

0 comments on commit 4b66122

Please sign in to comment.