Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'start/pom.xml')
-rw-r--r--start/pom.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/start/pom.xml b/start/pom.xml
new file mode 100644
index 0000000000..6ff159253f
--- /dev/null
+++ b/start/pom.xml
@@ -0,0 +1,28 @@
+<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.0.0.M3-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>start</artifactId>
+ <name>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>
+ </plugins>
+ </build>
+ <properties>
+ <start-jar-file-name>start.jar</start-jar-file-name>
+ </properties>
+</project>

Back to the top