forked from BoCloud/folib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
94 lines (84 loc) · 3.07 KB
/
pom.xml
File metadata and controls
94 lines (84 loc) · 3.07 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
<?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>
<!---Dfolib.db.profile=db_REMOTE-->
<parent>
<groupId>com.folib</groupId>
<artifactId>folib-parent</artifactId>
<version>3.0-SNAPSHOT</version>
<relativePath/>
</parent>
<artifactId>folib-server</artifactId>
<packaging>pom</packaging>
<name>Folib: Server</name>
<inceptionYear>2019</inceptionYear>
<scm>
<url>http://git.folib.com/folib/folib-server</url>
<connection>scm:git:git://git.folib.com/folib/folib-server.git</connection>
<developerConnection>scm:git:git://git.folib.com/folib/folib-server.git</developerConnection>
</scm>
<licenses>
<license>
<name>GNU General Public License, Version 3</name>
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
<distribution>repo</distribution>
<comments>GPL v3 is a strong copyleft license that requires derived works to also be open source under the GPL.</comments>
</license>
</licenses>
<modules>
<module>folib-commons</module>
<module>folib-configuration</module>
<module>folib-event-api</module>
<module>folib-security</module>
<module>folib-api</module>
<module>folib-job</module>
<module>folib-storage</module>
<module>folib-gremlin-service</module>
<module>folib-web-core</module>
<module>folib-build</module>
<module>folib-core</module>
</modules>
<profiles>
<profile>
<id>dependency-check</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>5.0.0</version>
<configuration>
<header>file://${project.basedir}/license-header.txt</header>
<includes>
<include>**/*.java</include>
</includes>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
</configuration>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>