Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 405c2588995d5bd4819727762543afd509c9aab1 (plain) (blame)
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
<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-distribution-remote-resources</module>
    <module>jetty-assembly-descriptors</module>
  </modules>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>2.6</version>
        <configuration>
          <!-- Never Deploy this build crutch -->
          <skip>true</skip>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

Back to the top