-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpom.xml
More file actions
104 lines (92 loc) · 3.43 KB
/
pom.xml
File metadata and controls
104 lines (92 loc) · 3.43 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="UTF-8"?>
<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>lu.jimenez.research</groupId>
<artifactId>data7-parent</artifactId>
<packaging>pom</packaging>
<version>1.99-SNAPSHOT</version>
<url>https://github.com/electricalwind/data7</url>
<description>An automated Vulnerability fix gatherer tool</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<properties>
<header.path>${basedir}/HEADER</header.path>
<project.version>1.99-SNAPSHOT</project.version>
</properties>
<developers>
<developer>
<name>Matthieu Jimenez</name>
<id>matthieu.jimenez</id>
<email>matthieu.jimenez@uni.lu</email>
<roles>
<role>admin</role>
<role>developer</role>
</roles>
<timezone>+2</timezone>
</developer>
</developers>
<modules>
<module>utilitaries/gitUtils</module>
<module>utilitaries/misc</module>
<module>data7</module>
<module>plugins/android</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.2</version>
<executions>
<execution>
<id>default-compile</id>
<phase>none</phase>
</execution>
<execution>
<id>default-testCompile</id>
<phase>none</phase>
</execution>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>testCompile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.16</version>
<configuration>
<verbose>false</verbose>
<organizationName>University of Luxembourg, Matthieu Jimenez</organizationName>
<inceptionYear>2018</inceptionYear>
<projectName>Data7</projectName>
<licenseName>apache_v2</licenseName>
<excludes>
<exclude>*.kt</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>