Skip to main content
summaryrefslogblamecommitdiffstats
blob: b0f16da50c0d6c1a81a3f917d526ced43cefcac1 (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>7.5.4.v20111024</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>jetty-start</artifactId>
  <name>Jetty :: Start</name>
  <description>The start utility</description>
  <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>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

Back to the top