forked from yagaan/yag-import-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
52 lines (47 loc) · 1.58 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yagaan</groupId>
<artifactId>yag-import-api</artifactId>
<version>1.0.5-SNAPSHOT</version>
<name>Yagaan SAST Import API model</name>
<description>Model API of a report produced by a SAST scanner tool that can be imported in the YAG Suite.</description>
<url>https://github.com/alfoch/yag-import-api/</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/alfoch/yag-import-api/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/alfoch/yag-import-api</url>
<connection>scm:git:git://github.com/alfoch/yag-import-api.git</connection>
</scm>
<developers>
<developer>
<email>afloch@yagaan.com</email>
<name>Antoine Floc'h</name>
<url>https://github.com/alfoch</url>
<id>alfoch</id>
</developer>
</developers>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>