Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4a25712d6adfb9877f672642be8f8df8255956cc (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
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
<?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">
    <parent>
        <groupId>org.eclipse.jetty.spdy</groupId>
        <artifactId>spdy-parent</artifactId>
        <version>9.3.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>spdy-example-webapp</artifactId>
    <packaging>war</packaging>
    <name>Jetty :: SPDY :: HTTP Web Application</name>

    <build>
        <plugins>
            <plugin>
                <groupId>org.eclipse.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
                <version>${project.version}</version>
                <configuration>
                    <stopPort>8888</stopPort>
                    <stopKey>quit</stopKey>
                    <jvmArgs>
                        -Xbootclasspath/p:${settings.localRepository}/org/mortbay/jetty/npn/npn-boot/${npn.version}/npn-boot-${npn.version}.jar
                    </jvmArgs>
                    <jettyXml>${basedir}/src/main/config/example-jetty-spdy.xml</jettyXml>
                    <contextPath>/</contextPath>
                    <excludedGoals>
                       <excludedGoal>run</excludedGoal>
                       <excludedGoal>run-war</excludedGoal>
                       <excludedGoal>deploy</excludedGoal>
                       <excludedGoal>start</excludedGoal>
                       <excludedGoal>stop</excludedGoal>
                    </excludedGoals>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>org.eclipse.jetty.spdy</groupId>
                        <artifactId>spdy-http-server</artifactId>
                        <version>${project.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>proxy</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.eclipse.jetty</groupId>
                        <artifactId>jetty-maven-plugin</artifactId>
                        <version>${project.version}</version>
                        <configuration>
                            <stopPort>8888</stopPort>
                            <stopKey>quit</stopKey>
                            <jvmArgs>
                                -Xbootclasspath/p:${settings.localRepository}/org/mortbay/jetty/npn/npn-boot/${npn.version}/npn-boot-${npn.version}.jar
                            </jvmArgs>
                            <jettyXml>${basedir}/src/main/config/example-jetty-spdy-proxy.xml</jettyXml>
                            <contextPath>/</contextPath>
                            <excludedGoals>
                               <excludedGoal>run</excludedGoal>
                               <excludedGoal>run-war</excludedGoal>
                               <excludedGoal>deploy</excludedGoal>
                               <excludedGoal>start</excludedGoal>
                               <excludedGoal>stop</excludedGoal>
                            </excludedGoals>
                        </configuration>
                        <dependencies>
                            <dependency>
                                <groupId>org.eclipse.jetty.spdy</groupId>
                                <artifactId>spdy-http-server</artifactId>
                                <version>${project.version}</version>
                            </dependency>
                        </dependencies>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>

Back to the top