-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
39 lines (38 loc) · 1.24 KB
/
pom.xml
File metadata and controls
39 lines (38 loc) · 1.24 KB
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
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed under the GNU General Public License 3.0.
~ Copyright Waoss and its affliates.
~ This library ,hereby permits :
~ 1. Commercial Use
~ 2. Modification
~ 3. Distribution
~ 4. Patent Use
~ 5. Private Use
~ Under the following conditions :
~ 1. License and copyright notice
~ 2. State changes
~ 3. Disclose source
~ 4. Same license
~ With the limitations of no liability or warranty.
~ For more information, see LICENSE.MD
-->
<project 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"
xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>com.waoss</groupId>
<artifactId>util.fids</artifactId>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<version>1.1</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>