You can download start-6.0.2.jar in this page.
Open Source
start-6.0.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.mortbay.jetty/start/pom.properties META-INF/maven/org.mortbay.jetty/start/pom.xml org.mortbay.start.Classpath.class org.mortbay.start.Main.class org.mortbay.start.Monitor.class org.mortbay.start.Version.class org/mortbay/start/start.config
start-6.0.2.pom file content.
<?xml version="1.0"?><project> <parent> <artifactId>project</artifactId> <groupId>org.mortbay.jetty</groupId> <version>6.0.2</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>start</artifactId> <name>Jetty start jar</name> <version>6.0.2</version> <build> <defaultGoal>install</defaultGoal> <resources> <resource> <directory>src/main/java</directory> <includes> <include>org/mortbay/start/*.config</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>clean</id> <phase>clean</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <delete failonerror="false" file="../../${project.artifactId}.${project.packaging}"></delete> </tasks> </configuration> </execution> <execution> <phase>install</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy file="target/${project.artifactId}-6.0.2.${project.packaging}" tofile="../../${project.artifactId}.${project.packaging}"></copy> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>org.mortbay.start.Main</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> <distributionManagement> <status>deployed</status> </distributionManagement> </project>
<dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>start</artifactId> <version>6.0.2</version> </dependency>
If you think the following start-6.0.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.