-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
32 lines (29 loc) · 1.03 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<project xmlns="http://maven.apache.org/POM/4.0.0">
<groupId>edu.buffalo.cse</groupId>
<artifactId>cse116</artifactId>
<modelVersion>4.0.0</modelVersion>
<url>http://maven.apache.org</url>
<version>0.0.1</version>
<dependencies>
<!--
https://mvnrepository.com/artifact/org.scalatest/scalatest
-->
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.12</artifactId>
<version>3.0.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.scalafx/scalafx -->
<dependency>
<groupId>org.scalafx</groupId>
<artifactId>scalafx_2.12</artifactId>
<version>11-R16</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-controls -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11.0.1</version>
</dependency>
</dependencies>
</project>