-
Notifications
You must be signed in to change notification settings - Fork 18
/
pom.xml
52 lines (52 loc) · 1.75 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.jetty.toolchain</groupId>
<artifactId>jetty-toolchain-build-crutch</artifactId>
<name>Jetty Toolchain :: Build Crutch</name>
<version>NO_RELEASE</version>
<packaging>pom</packaging>
<modules>
<module>jetty-toolchain</module>
<module>jetty-artifact-remote-resources</module>
<module>jetty-assembly-descriptors</module>
<!--module>jetty-build-support</module-->
<module>jetty-distribution-remote-resources</module>
<module>jetty-javax-servlet-api</module>
<module>jetty-jakarta-servlet-api</module>
<module>jetty-javax-websocket-api</module>
<module>jetty-jakarta-websocket-api</module>
<module>jetty-perf-helper</module>
<!--module>jetty-schemas</module-->
<!--module>jetty-test-helper</module-->
<module>jetty-test-policy</module>
<!--module>jetty-xhtml-schemas</module-->
<module>jetty-xslt-tools</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<!-- Never Deploy this build crutch -->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>setuid</id>
<activation>
<property>
<name>setuid</name>
<value>true</value>
</property>
</activation>
<modules>
<module>jetty-setuid</module>
</modules>
</profile>
</profiles>
</project>