Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 6573bc19b0cd82ea188ca9c79009e4331c699528 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                                                                                                                                                                         
                                      

                                    
                                      
                             
                                              
                                         











                                                                 






                                                              




                                                        

                

                                                    


                         
          
<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">
  <parent>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-project</artifactId>
    <version>9.2.4.v20141028</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>jetty-start</artifactId>
  <name>Jetty :: Start</name>
  <description>The start utility</description>
  <url>http://www.eclipse.org/jetty</url>
  <build>
   <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <mainClass>org.eclipse.jetty.start.Main</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <configuration>
          <onlyAnalyze>org.eclipse.jetty.start.*</onlyAnalyze>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <properties>
    <start-jar-file-name>start.jar</start-jar-file-name>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.eclipse.jetty.toolchain</groupId>
      <artifactId>jetty-test-helper</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

Back to the top