-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
146 lines (146 loc) · 4.18 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<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">
<properties>
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>yyyy-MM-dd
HH:mm</maven.build.timestamp.format>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>Broker</groupId>
<artifactId>Broker</artifactId>
<version>1.0</version>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<name>BROKER</name>
<description>Broker</description>
<organization>
<name>Text Exploration</name>
<url>https://www.textexploration.orgl/</url>
</organization>
<developers>
<developer>
<name>Matthijs Brouwer</name>
<url>https://nl.linkedin.com/in/brouwermatthijs/</url>
</developer>
</developers>
<build>
<finalName>${project.artifactId}-${project.version}-r${buildNumber}</finalName>
<plugins>
<!-- <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>read-props</id>
<phase>pre-site</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>test.properties</file>
</files>
</configuration>
</execution>
<execution>
<phase>site</phase>
<id>write-props</id>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>test2.properties</outputFile>
</configuration>
</execution>
</executions>
</plugin> -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<filesets>
<fileset>
<directory>gh-pages</directory>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>**/.git/</exclude>
</excludes>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>phpdoc</directory>
<includes>
<include>**/*</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.6</version>
<configuration>
<siteDirectory>${project.basedir}/doc/</siteDirectory>
<outputDirectory>${project.basedir}/gh-pages/</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>doc/phpdoc.sh</executable>
<workingDirectory>${project.basedir}</workingDirectory>
<!-- <arguments> <argument>-c</argument> <argument>doc/phpdoc.sh</argument>
</arguments> -->
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
<configuration>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
<reportSets>
<reportSet>
<reports>
<!-- <report>dependencies</report> <report>dependency-info</report> -->
<!-- <report>index</report> -->
<!-- <report>issue-tracking</report> -->
<report>license</report>
<!-- <report>plugin-management</report> -->
<!-- <report>plugins</report> -->
<report>project-team</report>
<!-- <report>mailing-list</report> -->
<!-- <report>cim</report> -->
<!-- <report>scm</report> <report>summary</report> -->
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>