-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpom.xml
More file actions
146 lines (143 loc) · 5.63 KB
/
pom.xml
File metadata and controls
146 lines (143 loc) · 5.63 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
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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.topbraid</groupId>
<artifactId>mauiserver</artifactId>
<version>1.5.0-tq</version>
<packaging>war</packaging>
<name>Maui Server</name>
<description>An HTTP wrapper around the Maui Topic Indexer</description>
<url>https://github.com/TopQuadrant/MauiServer</url>
<inceptionYear>2015</inceptionYear>
<issueManagement>
<url>https://github.com/TopQuadrant/MauiServer/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<licenses>
<license>
<name>GNU General Public License (GPL)</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/TopQuadrant/MauiServer</url>
<connection>scm:git:git://github.com/TopQuadrant/MauiServer.git</connection>
<developerConnection>scm:git:git@github.com:TopQuadrant/MauiServer.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>com.entopix</groupId>
<artifactId>maui</artifactId>
<version>1.4.0-tq</version>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.15.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
<version>4.10.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.36</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<!--
We should use Jetty 12: org.eclipse.jetty.ee10:jetty-ee10-maven-plugin:12.0.8
because that provides jakarta.servlet-api:6.0.0 while Jetty 11
only provides 5.0.0. But one of Weka's transitive dependencies
is of type :pom: and Jetty 12 doesn't seem to support this
type. So we use Jetty 11 which seems to work fine. We could also
use jetty:run-war instead of jetty:run.
<groupId>org.eclipse.jetty.ee10</groupId>
<artifactId>jetty-ee10-maven-plugin</artifactId>
<version>12.0.8</version>
-->
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>11.0.20</version>
<configuration>
<loginServices>
<loginService implementation="org.eclipse.jetty.security.HashLoginService">
<name>Maui Server</name>
<config>${project.basedir}/src/etc/realm.properties</config>
<!-- The above works for Jetty up to 11; the below for Jetty 12
<config implementation="org.eclipse.jetty.ee10.maven.plugin.MavenResource">
<resourceAsString>${project.basedir}/src/etc/realm.properties</resourceAsString>
</config>
-->
</loginService>
</loginServices>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- Prevent use of outdated built-in Maven plugins -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.3.2</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.4.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>