-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
23 lines (21 loc) · 785 Bytes
/
pom.xml
File metadata and controls
23 lines (21 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<project xmlns="http://maven.apache.org/POM/4.0.0">
<groupId>com.mycompany.app</groupId>
<artifactId>test1</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>
</dependencies>
</project>