Skip to content

Commit

Permalink
Merge branch 'double-dependency-fix' into 'main'
Browse files Browse the repository at this point in the history
Fixed a double dependency which resulted in a serious warning from Maven.

See merge request Maurycyt/idlearn!40
  • Loading branch information
Maurycyt committed May 4, 2022
2 parents 3a706cd + c3585bd commit d1f3829
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 30 deletions.
12 changes: 6 additions & 6 deletions application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@
<artifactId>scenes</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>mimuw</groupId>
<artifactId>scoring</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
Expand All @@ -57,12 +63,6 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mimuw</groupId>
<artifactId>scoring</artifactId>
<version>2.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<finalName>IdLearn</finalName>
Expand Down
30 changes: 12 additions & 18 deletions scenes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@
<artifactId>core</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>mimuw</groupId>
<artifactId>idlang</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>mimuw</groupId>
<artifactId>scoring</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
Expand All @@ -42,23 +54,5 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mimuw</groupId>
<artifactId>idlang</artifactId>
<version>2.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>mimuw</groupId>
<artifactId>scoring</artifactId>
<version>2.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>mimuw</groupId>
<artifactId>idlang</artifactId>
<version>2.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
12 changes: 6 additions & 6 deletions scoring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
<artifactId>core</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>mimuw</groupId>
<artifactId>idlang</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
Expand All @@ -32,11 +38,5 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mimuw</groupId>
<artifactId>idlang</artifactId>
<version>2.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>

0 comments on commit d1f3829

Please sign in to comment.