├── .gitignore ├── Jetty7Support ├── feature-jetty7 │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── plugin-jetty7 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── bootstrap │ │ └── runjettyrun │ │ │ ├── Bootstrap.java │ │ │ ├── Configs.java │ │ │ ├── ProjectClassLoader.java │ │ │ ├── VirtualResource.java │ │ │ └── scanner │ │ │ └── RJRFileChangeListener.java │ ├── build.properties │ ├── jndilib │ │ ├── javax.activation-1.1.0.v201105071233.jar │ │ ├── javax.activation_1.1.0.v201005080500.jar │ │ └── javax.mail.glassfish_1.4.1.v201005082020.jar │ ├── lib │ │ ├── com.sun.el_1.0.0.v201004190952.jar │ │ ├── ecj-3.6.jar │ │ ├── javax.el_2.1.0.v201004190952.jar │ │ ├── javax.servlet.jsp.jstl_1.2.0.v201004190952.jar │ │ ├── javax.servlet.jsp_2.1.0.v201004190952.jar │ │ ├── jetty-ajp-7.6.8.v20121106.jar │ │ ├── jetty-annotations-7.6.8.v20121106.jar │ │ ├── jetty-client-7.6.8.v20121106.jar │ │ ├── jetty-continuation-7.6.8.v20121106.jar │ │ ├── jetty-deploy-7.6.8.v20121106.jar │ │ ├── jetty-http-7.6.8.v20121106.jar │ │ ├── jetty-io-7.6.8.v20121106.jar │ │ ├── jetty-jmx-7.6.8.v20121106.jar │ │ ├── jetty-jndi-7.6.8.v20121106.jar │ │ ├── jetty-overlay-deployer-7.6.8.v20121106.jar │ │ ├── jetty-plus-7.6.8.v20121106.jar │ │ ├── jetty-policy-7.6.8.v20121106.jar │ │ ├── jetty-rewrite-7.6.8.v20121106.jar │ │ ├── jetty-security-7.6.8.v20121106.jar │ │ ├── jetty-server-7.6.8.v20121106.jar │ │ ├── jetty-servlet-7.6.8.v20121106.jar │ │ ├── jetty-servlets-7.6.8.v20121106.jar │ │ ├── jetty-util-7.6.8.v20121106.jar │ │ ├── jetty-webapp-7.6.8.v20121106.jar │ │ ├── jetty-websocket-7.6.8.v20121106.jar │ │ ├── jetty-xml-7.6.8.v20121106.jar │ │ ├── org.apache.jasper.glassfish_2.1.0.v201007080150.jar │ │ ├── org.apache.taglibs.standard.glassfish_1.2.0.v201004190952.jar │ │ ├── servlet-api-2.5.jar │ │ ├── spdy-core-7.6.8.v20121106.jar │ │ ├── spdy-jetty-7.6.8.v20121106.jar │ │ └── spdy-jetty-http-7.6.8.v20121106.jar │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── run_jetty_run_jetty7 │ │ ├── Activator.java │ │ └── Jetty7PackageProvider.java └── pom.xml ├── Jetty8Support ├── feature-jetty8 │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── plugin-jetty8 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── bootstrap │ │ └── runjettyrun │ │ │ ├── Bootstrap.java │ │ │ ├── Configs.java │ │ │ ├── ProjectClassLoader.java │ │ │ ├── VirtualResource.java │ │ │ ├── annotation │ │ │ └── RJRAnnotationConfiguration.java │ │ │ ├── scanner │ │ │ └── RJRFileChangeListener.java │ │ │ └── webapp │ │ │ ├── RJRMetaInfoConfiguration.java │ │ │ └── RJRWebInfConfiguration.java │ ├── build.properties │ ├── jndilib │ │ ├── javax.activation_1.1.0.v201105071233.jar │ │ └── javax.mail.glassfish_1.4.1.v201005082020.jar │ ├── lib │ │ ├── com.sun.el-2.2.0.v201108011116.jar │ │ ├── javax.annotation_1.1.0.v201105051105.jar │ │ ├── javax.el-2.2.0.v201108011116.jar │ │ ├── javax.servlet.jsp-2.2.0.v201112011158.jar │ │ ├── javax.servlet.jsp.jstl-1.2.0.v201105211821.jar │ │ ├── jetty-ajp-8.1.8.v20121106.jar │ │ ├── jetty-annotations-8.1.8.v20121106.jar │ │ ├── jetty-client-8.1.8.v20121106.jar │ │ ├── jetty-continuation-8.1.8.v20121106.jar │ │ ├── jetty-deploy-8.1.8.v20121106.jar │ │ ├── jetty-http-8.1.8.v20121106.jar │ │ ├── jetty-io-8.1.8.v20121106.jar │ │ ├── jetty-jmx-8.1.8.v20121106.jar │ │ ├── jetty-jndi-8.1.8.v20121106.jar │ │ ├── jetty-overlay-deployer-8.1.8.v20121106.jar │ │ ├── jetty-plus-8.1.8.v20121106.jar │ │ ├── jetty-policy-8.1.8.v20121106.jar │ │ ├── jetty-rewrite-8.1.8.v20121106.jar │ │ ├── jetty-security-8.1.8.v20121106.jar │ │ ├── jetty-server-8.1.8.v20121106.jar │ │ ├── jetty-servlet-8.1.8.v20121106.jar │ │ ├── jetty-servlets-8.1.8.v20121106.jar │ │ ├── jetty-util-8.1.8.v20121106.jar │ │ ├── jetty-webapp-8.1.8.v20121106.jar │ │ ├── jetty-websocket-8.1.8.v20121106.jar │ │ ├── jetty-xml-8.1.8.v20121106.jar │ │ ├── jsp-impl-2.2.2.b05.0.jar │ │ ├── org.apache.jasper.glassfish-2.2.2.v201112011158.jar │ │ ├── org.apache.taglibs.standard.glassfish-1.2.0.v201112081803.jar │ │ ├── org.objectweb.asm_3.3.1.v201101071600.jar │ │ ├── servlet-api-3.0.jar │ │ ├── spdy-core-8.1.8.v20121106.jar │ │ ├── spdy-jetty-8.1.8.v20121106.jar │ │ └── spdy-jetty-http-8.1.8.v20121106.jar │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── run_jetty_run_jetty8 │ │ ├── Activator.java │ │ └── Jetty8PackageProvider.java └── pom.xml ├── Jetty93Support ├── feature-jetty93 │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── plugin-jetty93 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── bootstrap │ │ └── runjettyrun │ │ │ ├── Bootstrap.java │ │ │ ├── Configs.java │ │ │ ├── ProjectClassLoader.java │ │ │ ├── VirtualResource.java │ │ │ ├── annotation │ │ │ └── RJRAnnotationConfiguration.java │ │ │ ├── scanner │ │ │ └── RJRFileChangeListener.java │ │ │ └── webapp │ │ │ ├── RJRMetaInfoConfiguration.java │ │ │ └── RJRWebInfConfiguration.java │ ├── build.properties │ ├── lib │ │ ├── annotations │ │ │ ├── asm-5.0.1.jar │ │ │ ├── asm-commons-5.0.1.jar │ │ │ └── javax.annotation-api-1.2.jar │ │ ├── apache-jsp │ │ │ ├── org.eclipse.jdt.core.compiler.ecj-4.4.2.jar │ │ │ ├── org.eclipse.jetty.apache-jsp-9.3.6.v20151106.jar │ │ │ ├── org.mortbay.jasper.apache-el-8.0.27.jar │ │ │ └── org.mortbay.jasper.apache-jsp-8.0.27.jar │ │ ├── apache-jstl │ │ │ ├── org.apache.taglibs.taglibs-standard-impl-1.2.5.jar │ │ │ └── org.apache.taglibs.taglibs-standard-spec-1.2.5.jar │ │ ├── cdi-core-9.3.6.v20151106.jar │ │ ├── cdi-servlet-9.3.6.v20151106.jar │ │ ├── cdi-websocket-9.3.6.v20151106.jar │ │ ├── ext │ │ │ └── .donotdelete │ │ ├── fcgi │ │ │ ├── fcgi-client-9.3.6.v20151106.jar │ │ │ └── fcgi-server-9.3.6.v20151106.jar │ │ ├── gcloud-session-manager-9.3.6.v20151106.jar │ │ ├── http2 │ │ │ ├── http2-common-9.3.6.v20151106.jar │ │ │ ├── http2-hpack-9.3.6.v20151106.jar │ │ │ └── http2-server-9.3.6.v20151106.jar │ │ ├── jaspi │ │ │ └── javax.security.auth.message-1.0.0.v201108011116.jar │ │ ├── jetty-alpn-server-9.3.6.v20151106.jar │ │ ├── jetty-annotations-9.3.6.v20151106.jar │ │ ├── jetty-client-9.3.6.v20151106.jar │ │ ├── jetty-continuation-9.3.6.v20151106.jar │ │ ├── jetty-deploy-9.3.6.v20151106.jar │ │ ├── jetty-http-9.3.6.v20151106.jar │ │ ├── jetty-infinispan-9.3.6.v20151106.jar │ │ ├── jetty-io-9.3.6.v20151106.jar │ │ ├── jetty-jaas-9.3.6.v20151106.jar │ │ ├── jetty-jaspi-9.3.6.v20151106.jar │ │ ├── jetty-jmx-9.3.6.v20151106.jar │ │ ├── jetty-jndi-9.3.6.v20151106.jar │ │ ├── jetty-nosql-9.3.6.v20151106.jar │ │ ├── jetty-plus-9.3.6.v20151106.jar │ │ ├── jetty-proxy-9.3.6.v20151106.jar │ │ ├── jetty-quickstart-9.3.6.v20151106.jar │ │ ├── jetty-rewrite-9.3.6.v20151106.jar │ │ ├── jetty-schemas-3.1.jar │ │ ├── jetty-security-9.3.6.v20151106.jar │ │ ├── jetty-server-9.3.6.v20151106.jar │ │ ├── jetty-servlet-9.3.6.v20151106.jar │ │ ├── jetty-servlets-9.3.6.v20151106.jar │ │ ├── jetty-util-9.3.6.v20151106.jar │ │ ├── jetty-webapp-9.3.6.v20151106.jar │ │ ├── jetty-xml-9.3.6.v20151106.jar │ │ ├── jndi │ │ │ ├── javax.mail.glassfish-1.4.1.v201005082020.jar │ │ │ └── javax.transaction-api-1.2.jar │ │ ├── monitor │ │ │ └── jetty-monitor-9.3.6.v20151106.jar │ │ ├── servlet-api-3.1.jar │ │ ├── setuid │ │ │ ├── jetty-setuid-java-1.0.3.jar │ │ │ ├── libsetuid-linux.so │ │ │ └── libsetuid-osx.so │ │ ├── spring │ │ │ └── jetty-spring-9.3.6.v20151106.jar │ │ └── websocket │ │ │ ├── javax-websocket-client-impl-9.3.6.v20151106.jar │ │ │ ├── javax-websocket-server-impl-9.3.6.v20151106.jar │ │ │ ├── javax.websocket-api-1.0.jar │ │ │ ├── websocket-api-9.3.6.v20151106.jar │ │ │ ├── websocket-client-9.3.6.v20151106.jar │ │ │ ├── websocket-common-9.3.6.v20151106.jar │ │ │ ├── websocket-server-9.3.6.v20151106.jar │ │ │ └── websocket-servlet-9.3.6.v20151106.jar │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── run_jetty_run_jetty93 │ │ ├── Activator.java │ │ └── Jetty93PackageProvider.java └── pom.xml ├── Jetty948Support ├── .project ├── .settings │ └── org.eclipse.m2e.core.prefs ├── feature-jetty948 │ ├── .project │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── plugin-jetty948 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── bootstrap │ │ └── runjettyrun │ │ │ ├── Bootstrap.java │ │ │ ├── Configs.java │ │ │ ├── ProjectClassLoader.java │ │ │ ├── VirtualResource.java │ │ │ ├── annotation │ │ │ └── RJRAnnotationConfiguration.java │ │ │ ├── scanner │ │ │ └── RJRFileChangeListener.java │ │ │ └── webapp │ │ │ ├── RJRMetaInfoConfiguration.java │ │ │ └── RJRWebInfConfiguration.java │ ├── build.properties │ ├── lib │ │ ├── alpn-api-1.1.3.v20160715.jar │ │ ├── annotations │ │ │ ├── asm-6.0.jar │ │ │ ├── asm-commons-6.0.jar │ │ │ └── javax.annotation-api-1.2.jar │ │ ├── apache-jsp │ │ │ ├── org.eclipse.jdt.ecj-3.12.3.jar │ │ │ ├── org.eclipse.jetty.apache-jsp-9.4.8.v20171121.jar │ │ │ ├── org.mortbay.jasper.apache-el-8.5.23.jar │ │ │ └── org.mortbay.jasper.apache-jsp-8.5.23.jar │ │ ├── apache-jstl │ │ │ ├── org.apache.taglibs.taglibs-standard-impl-1.2.5.jar │ │ │ └── org.apache.taglibs.taglibs-standard-spec-1.2.5.jar │ │ ├── cdi-2-9.4.8.v20171121.jar │ │ ├── cdi-core-9.4.8.v20171121.jar │ │ ├── cdi-servlet-9.4.8.v20171121.jar │ │ ├── ext │ │ │ └── .donotdelete │ │ ├── fcgi │ │ │ ├── fcgi-client-9.4.8.v20171121.jar │ │ │ └── fcgi-server-9.4.8.v20171121.jar │ │ ├── http2 │ │ │ ├── http2-common-9.4.8.v20171121.jar │ │ │ ├── http2-hpack-9.4.8.v20171121.jar │ │ │ └── http2-server-9.4.8.v20171121.jar │ │ ├── jaspi │ │ │ └── javax.security.auth.message-1.0.0.v201108011116.jar │ │ ├── jetty-alpn-conscrypt-server-9.4.8.v20171121.jar │ │ ├── jetty-alpn-java-server-9.4.8.v20171121.jar │ │ ├── jetty-alpn-openjdk8-server-9.4.8.v20171121.jar │ │ ├── jetty-alpn-server-9.4.8.v20171121.jar │ │ ├── jetty-annotations-9.4.8.v20171121.jar │ │ ├── jetty-client-9.4.8.v20171121.jar │ │ ├── jetty-continuation-9.4.8.v20171121.jar │ │ ├── jetty-deploy-9.4.8.v20171121.jar │ │ ├── jetty-gcloud-session-manager-9.4.8.v20171121.jar │ │ ├── jetty-hazelcast-9.4.8.v20171121.jar │ │ ├── jetty-http-9.4.8.v20171121.jar │ │ ├── jetty-infinispan-9.4.8.v20171121.jar │ │ ├── jetty-io-9.4.8.v20171121.jar │ │ ├── jetty-jaas-9.4.8.v20171121.jar │ │ ├── jetty-jaspi-9.4.8.v20171121.jar │ │ ├── jetty-jmx-9.4.8.v20171121.jar │ │ ├── jetty-jndi-9.4.8.v20171121.jar │ │ ├── jetty-memcached-sessions-9.4.8.v20171121.jar │ │ ├── jetty-nosql-9.4.8.v20171121.jar │ │ ├── jetty-plus-9.4.8.v20171121.jar │ │ ├── jetty-proxy-9.4.8.v20171121.jar │ │ ├── jetty-quickstart-9.4.8.v20171121.jar │ │ ├── jetty-rewrite-9.4.8.v20171121.jar │ │ ├── jetty-schemas-3.1.jar │ │ ├── jetty-security-9.4.8.v20171121.jar │ │ ├── jetty-server-9.4.8.v20171121.jar │ │ ├── jetty-servlet-9.4.8.v20171121.jar │ │ ├── jetty-servlets-9.4.8.v20171121.jar │ │ ├── jetty-unixsocket-9.4.8.v20171121.jar │ │ ├── jetty-util-9.4.8.v20171121.jar │ │ ├── jetty-webapp-9.4.8.v20171121.jar │ │ ├── jetty-xml-9.4.8.v20171121.jar │ │ ├── mail │ │ │ └── javax.mail.glassfish-1.4.1.v201005082020.jar │ │ ├── servlet-api-3.1.jar │ │ ├── setuid │ │ │ ├── jetty-setuid-java-1.0.3.jar │ │ │ ├── libsetuid-linux.so │ │ │ └── libsetuid-osx.so │ │ ├── spring │ │ │ └── jetty-spring-9.4.8.v20171121.jar │ │ ├── transactions │ │ │ └── javax.transaction-api-1.2.jar │ │ └── websocket │ │ │ ├── javax-websocket-client-impl-9.4.8.v20171121.jar │ │ │ ├── javax-websocket-server-impl-9.4.8.v20171121.jar │ │ │ ├── javax.websocket-api-1.0.jar │ │ │ ├── websocket-api-9.4.8.v20171121.jar │ │ │ ├── websocket-client-9.4.8.v20171121.jar │ │ │ ├── websocket-common-9.4.8.v20171121.jar │ │ │ ├── websocket-server-9.4.8.v20171121.jar │ │ │ └── websocket-servlet-9.4.8.v20171121.jar │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── run_jetty_run_jetty948 │ │ ├── Activator.java │ │ └── Jetty948PackageProvider.java └── pom.xml ├── Jetty94Support ├── feature-jetty94 │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── plugin-jetty94 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── bootstrap │ │ └── runjettyrun │ │ │ ├── Bootstrap.java │ │ │ ├── Configs.java │ │ │ ├── ProjectClassLoader.java │ │ │ ├── VirtualResource.java │ │ │ ├── annotation │ │ │ └── RJRAnnotationConfiguration.java │ │ │ ├── scanner │ │ │ └── RJRFileChangeListener.java │ │ │ └── webapp │ │ │ ├── RJRMetaInfoConfiguration.java │ │ │ └── RJRWebInfConfiguration.java │ ├── build.properties │ ├── lib │ │ ├── annotations │ │ │ ├── asm-5.1.jar │ │ │ ├── asm-commons-5.1.jar │ │ │ └── javax.annotation-api-1.2.jar │ │ ├── apache-jsp │ │ │ ├── org.eclipse.jdt.core.compiler.ecj-4.4.2.jar │ │ │ ├── org.eclipse.jetty.apache-jsp-9.4.6.v20170531.jar │ │ │ ├── org.mortbay.jasper.apache-el-8.5.9.1.jar │ │ │ └── org.mortbay.jasper.apache-jsp-8.5.9.1.jar │ │ ├── apache-jstl │ │ │ ├── org.apache.taglibs.taglibs-standard-impl-1.2.5.jar │ │ │ └── org.apache.taglibs.taglibs-standard-spec-1.2.5.jar │ │ ├── cdi-core-9.4.6.v20170531.jar │ │ ├── cdi-servlet-9.4.6.v20170531.jar │ │ ├── cdi-websocket-9.4.6.v20170531.jar │ │ ├── ext │ │ │ └── .donotdelete │ │ ├── fcgi │ │ │ ├── fcgi-client-9.4.6.v20170531.jar │ │ │ └── fcgi-server-9.4.6.v20170531.jar │ │ ├── http2 │ │ │ ├── http2-common-9.4.6.v20170531.jar │ │ │ ├── http2-hpack-9.4.6.v20170531.jar │ │ │ └── http2-server-9.4.6.v20170531.jar │ │ ├── jaspi │ │ │ └── javax.security.auth.message-1.0.0.v201108011116.jar │ │ ├── jetty-alpn-server-9.4.6.v20170531.jar │ │ ├── jetty-annotations-9.4.6.v20170531.jar │ │ ├── jetty-client-9.4.6.v20170531.jar │ │ ├── jetty-continuation-9.4.6.v20170531.jar │ │ ├── jetty-deploy-9.4.6.v20170531.jar │ │ ├── jetty-gcloud-session-manager-9.4.6.v20170531.jar │ │ ├── jetty-http-9.4.6.v20170531.jar │ │ ├── jetty-infinispan-9.4.6.v20170531.jar │ │ ├── jetty-io-9.4.6.v20170531.jar │ │ ├── jetty-jaas-9.4.6.v20170531.jar │ │ ├── jetty-jaspi-9.4.6.v20170531.jar │ │ ├── jetty-jmx-9.4.6.v20170531.jar │ │ ├── jetty-jndi-9.4.6.v20170531.jar │ │ ├── jetty-memcached-sessions-9.4.6.v20170531.jar │ │ ├── jetty-nosql-9.4.6.v20170531.jar │ │ ├── jetty-plus-9.4.6.v20170531.jar │ │ ├── jetty-proxy-9.4.6.v20170531.jar │ │ ├── jetty-quickstart-9.4.6.v20170531.jar │ │ ├── jetty-rewrite-9.4.6.v20170531.jar │ │ ├── jetty-schemas-3.1.jar │ │ ├── jetty-security-9.4.6.v20170531.jar │ │ ├── jetty-server-9.4.6.v20170531.jar │ │ ├── jetty-servlet-9.4.6.v20170531.jar │ │ ├── jetty-servlets-9.4.6.v20170531.jar │ │ ├── jetty-unixsocket-9.4.6.v20170531.jar │ │ ├── jetty-util-9.4.6.v20170531.jar │ │ ├── jetty-webapp-9.4.6.v20170531.jar │ │ ├── jetty-xml-9.4.6.v20170531.jar │ │ ├── jndi │ │ │ ├── javax.mail.glassfish-1.4.1.v201005082020.jar │ │ │ └── javax.transaction-api-1.2.jar │ │ ├── servlet-api-3.1.jar │ │ ├── setuid │ │ │ ├── jetty-setuid-java-1.0.3.jar │ │ │ ├── libsetuid-linux.so │ │ │ └── libsetuid-osx.so │ │ ├── spring │ │ │ └── jetty-spring-9.4.6.v20170531.jar │ │ └── websocket │ │ │ ├── javax-websocket-client-impl-9.4.6.v20170531.jar │ │ │ ├── javax-websocket-server-impl-9.4.6.v20170531.jar │ │ │ ├── javax.websocket-api-1.0.jar │ │ │ ├── websocket-api-9.4.6.v20170531.jar │ │ │ ├── websocket-client-9.4.6.v20170531.jar │ │ │ ├── websocket-common-9.4.6.v20170531.jar │ │ │ ├── websocket-server-9.4.6.v20170531.jar │ │ │ └── websocket-servlet-9.4.6.v20170531.jar │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── run_jetty_run_jetty94 │ │ ├── Activator.java │ │ └── Jetty94PackageProvider.java └── pom.xml ├── Jetty9Support ├── feature-jetty9 │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── plugin-jetty9 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── bootstrap │ │ └── runjettyrun │ │ │ ├── Bootstrap.java │ │ │ ├── Configs.java │ │ │ ├── ProjectClassLoader.java │ │ │ ├── VirtualResource.java │ │ │ ├── annotation │ │ │ └── RJRAnnotationConfiguration.java │ │ │ ├── scanner │ │ │ └── RJRFileChangeListener.java │ │ │ └── webapp │ │ │ ├── RJRMetaInfoConfiguration.java │ │ │ └── RJRWebInfConfiguration.java │ ├── build.properties │ ├── jndilib │ │ ├── javax.activation_1.1.0.v201105071233.jar │ │ └── javax.mail.glassfish_1.4.1.v201005082020.jar │ ├── lib │ │ ├── com.sun.el-2.2.0.v201108011116.jar │ │ ├── javax.annotation_1.1.0.v201105051105.jar │ │ ├── javax.el-2.2.0.v201108011116.jar │ │ ├── javax.servlet.jsp-2.2.0.v201112011158.jar │ │ ├── javax.servlet.jsp.jstl-1.2.0.v201105211821.jar │ │ ├── javax.websocket-api-0.0.006.draft.jar │ │ ├── jetty-annotations-8.1.8.v20121106.jar │ │ ├── jetty-annotations-9.0.0.M3.jar │ │ ├── jetty-client-9.0.0.M3.jar │ │ ├── jetty-continuation-9.0.0.M3.jar │ │ ├── jetty-deploy-9.0.0.M3.jar │ │ ├── jetty-http-9.0.0.M3.jar │ │ ├── jetty-io-9.0.0.M3.jar │ │ ├── jetty-jaas-9.0.0.M3.jar │ │ ├── jetty-jmx-9.0.0.M3.jar │ │ ├── jetty-jndi-9.0.0.M3.jar │ │ ├── jetty-plus-9.0.0.M3.jar │ │ ├── jetty-rewrite-9.0.0.M3.jar │ │ ├── jetty-security-9.0.0.M3.jar │ │ ├── jetty-server-9.0.0.M3.jar │ │ ├── jetty-servlet-9.0.0.M3.jar │ │ ├── jetty-servlets-9.0.0.M3.jar │ │ ├── jetty-util-9.0.0.M3.jar │ │ ├── jetty-webapp-9.0.0.M3.jar │ │ ├── jetty-xml-9.0.0.M3.jar │ │ ├── org.apache.jasper.glassfish-2.2.2.v201112011158.jar │ │ ├── org.apache.taglibs.standard.glassfish-1.2.0.v201112081803.jar │ │ ├── org.eclipse.jdt.core-3.7.1.jar │ │ ├── org.objectweb.asm_3.3.1.v201101071600.jar │ │ ├── servlet-api-3.0.jar │ │ ├── spdy-client-9.0.0.M3.jar │ │ ├── spdy-core-9.0.0.M3.jar │ │ ├── spdy-http-server-9.0.0.M3.jar │ │ ├── spdy-server-9.0.0.M3.jar │ │ ├── websocket-api-9.0.0.M3.jar │ │ ├── websocket-client-9.0.0.M3.jar │ │ ├── websocket-common-9.0.0.M3.jar │ │ ├── websocket-server-9.0.0.M3.jar │ │ └── websocket-servlet-9.0.0.M3.jar │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── run_jetty_run_jetty9 │ │ ├── Activator.java │ │ └── Jetty9PackageProvider.java └── pom.xml ├── README.md ├── Runjettyrun ├── feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── plugin │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.txt │ ├── about.ini │ ├── bootstrap.jar │ ├── bootstrap │ │ └── runjettyrun │ │ │ ├── Bootstrap.java │ │ │ ├── Configs.java │ │ │ ├── ProjectClassLoader.java │ │ │ ├── VirtualResource.java │ │ │ └── scanner │ │ │ └── RJRFileChangeListener.java │ ├── build.properties │ ├── icons │ │ └── jetty.gif │ ├── jndilib │ │ ├── activation-1.1.1.jar │ │ ├── jetty-naming-6.1.26.jar │ │ ├── jetty-plus-6.1.26.jar │ │ └── mail-1.4.jar │ ├── lib │ │ ├── core-3.1.1.jar │ │ ├── jetty-6.1.26.jar │ │ ├── jetty-management-6.1.26.jar │ │ ├── jetty-util-6.1.26.jar │ │ ├── jsp-2.1.jar │ │ ├── jsp-api-2.1.jar │ │ └── servlet-api-2.5-20081211.jar │ ├── plugin.xml │ ├── pom.xml │ ├── schema │ │ └── runjettyrun.jetty.providers.exsd │ └── src │ │ └── runjettyrun │ │ ├── JettyLaunchConfigurationClassPathProvider.java │ │ ├── JettyLaunchConfigurationTabGroup.java │ │ ├── JettyLaunchConfigurationType.java │ │ ├── Plugin.java │ │ ├── RunJettyRunMessages.java │ │ ├── RunJettyRunMessages.properties │ │ ├── container │ │ ├── Jetty6PackageProvider.java │ │ └── RunJettyRunContainerClasspathEntry.java │ │ ├── exceptions │ │ └── MissingClasspathEntryException.java │ │ ├── extensions │ │ └── IJettyPackageProvider.java │ │ ├── launchshortcut │ │ ├── RunJettyRunLaunchShortcut.java │ │ └── properties │ │ │ └── RunJettyRunPropertiesTester.java │ │ ├── preferences │ │ ├── PreferenceConstants.java │ │ ├── PreferenceInitializer.java │ │ └── PreferencePage.java │ │ ├── tabs │ │ ├── AbstractClasspathTab.java │ │ ├── JettyClasspathTab.java │ │ ├── RunJettyRunTab.java │ │ ├── ScanFolderTab.java │ │ ├── WebcontextClasspathTab.java │ │ ├── action │ │ │ ├── AddClassFolderAction.java │ │ │ ├── AddExternalFileAction.java │ │ │ ├── AddExternalFolderAction.java │ │ │ ├── AddExternalJarAction.java │ │ │ ├── AddFolderAction.java │ │ │ ├── AddJarAction.java │ │ │ ├── AddProjectAction.java │ │ │ ├── RemoveAction.java │ │ │ ├── RestoreDefaultEntriesAction.java │ │ │ ├── RestoreDefaultSelectionAction.java │ │ │ ├── RuntimeClasspathAction.java │ │ │ └── helper │ │ │ │ ├── ClosedProjectFilter.java │ │ │ │ ├── FolderOnlyFilter.java │ │ │ │ ├── LibraryFilter.java │ │ │ │ ├── OutputFolderOnlyFilter.java │ │ │ │ ├── ProjectLabelProvider.java │ │ │ │ ├── ProjectSelectionDialog.java │ │ │ │ ├── SWTFactory.java │ │ │ │ └── StatusInfo.java │ │ └── classpath │ │ │ ├── AbstractClasspathEntry.java │ │ │ ├── ClasspathEntry.java │ │ │ ├── ClasspathGroup.java │ │ │ ├── ClasspathLabelProvider.java │ │ │ ├── IClasspathViewer.java │ │ │ ├── IEntriesChangedListener.java │ │ │ ├── IRJRClasspathEntry.java │ │ │ ├── MissingRuntimeClasspathEntry.java │ │ │ ├── RuntimeClasspathViewer.java │ │ │ ├── RuntimeUserClasspathEntryLabelProvider.java │ │ │ ├── UserClassesClasspathContentProvider.java │ │ │ └── UserClassesClasspathModel.java │ │ └── utils │ │ ├── BrowserUtil.java │ │ ├── PortUtil.java │ │ ├── ProjectUtil.java │ │ ├── ResourceUtil.java │ │ ├── RunJettyRunClasspathResolver.java │ │ ├── RunJettyRunClasspathUtil.java │ │ ├── RunJettyRunLaunchConfigurationUtil.java │ │ ├── RunJettyRunSourceLookupUtil.java │ │ ├── UIUtil.java │ │ └── VersionUtil.java ├── pom.xml ├── test │ ├── .classpath │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── runtime-EclipseApplication │ │ ├── .metadata │ │ │ ├── .lock │ │ │ ├── .mylyn │ │ │ │ ├── .tasks.xml.zip │ │ │ │ ├── repositories.xml.zip │ │ │ │ └── tasks.xml.zip │ │ │ ├── .plugins │ │ │ │ ├── com.vectrace.MercurialEclipse │ │ │ │ │ └── commit_messages.xml │ │ │ │ ├── org.eclipse.core.resources │ │ │ │ │ ├── .history │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ └── 10da40f9e96d00111753bd6cb72893fa │ │ │ │ │ │ ├── 14 │ │ │ │ │ │ │ └── c055d5dae86d001111f78b3a862bd7ca │ │ │ │ │ │ ├── 49 │ │ │ │ │ │ │ └── 90b5e805e96d001111f78b3a862bd7ca │ │ │ │ │ │ ├── 58 │ │ │ │ │ │ │ └── 603656e7e96d00111753bd6cb72893fa │ │ │ │ │ │ ├── 66 │ │ │ │ │ │ │ └── a04deb05e96d001111f78b3a862bd7ca │ │ │ │ │ │ ├── 79 │ │ │ │ │ │ │ └── 908d3009e96d001111f78b3a862bd7ca │ │ │ │ │ │ ├── 93 │ │ │ │ │ │ │ └── 7005e4f9c96d00111ebcf42c425b7cd4 │ │ │ │ │ │ ├── 2b │ │ │ │ │ │ │ ├── 0046a9f4e86d001111f78b3a862bd7ca │ │ │ │ │ │ │ └── f0773109e96d001111f78b3a862bd7ca │ │ │ │ │ │ ├── 3f │ │ │ │ │ │ │ └── e014d8dae86d001111f78b3a862bd7ca │ │ │ │ │ │ ├── 4f │ │ │ │ │ │ │ └── d09a3309e96d001111f78b3a862bd7ca │ │ │ │ │ │ ├── 6b │ │ │ │ │ │ │ └── 9034a8f4e86d001111f78b3a862bd7ca │ │ │ │ │ │ ├── 6e │ │ │ │ │ │ │ └── 90a946c7e96d00111753bd6cb72893fa │ │ │ │ │ │ ├── c0 │ │ │ │ │ │ │ └── 70213509e96d001111f78b3a862bd7ca │ │ │ │ │ │ ├── c7 │ │ │ │ │ │ │ └── 30853409e96d001111f78b3a862bd7ca │ │ │ │ │ │ ├── d │ │ │ │ │ │ │ └── 7003d7dae86d001111f78b3a862bd7ca │ │ │ │ │ │ ├── d9 │ │ │ │ │ │ │ ├── 403b3209e96d001111f78b3a862bd7ca │ │ │ │ │ │ │ └── 80d73209e96d001111f78b3a862bd7ca │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ └── 10fca6f4e86d001111f78b3a862bd7ca │ │ │ │ │ │ ├── ef │ │ │ │ │ │ │ └── 2015ea05e96d001111f78b3a862bd7ca │ │ │ │ │ │ └── f3 │ │ │ │ │ │ │ └── 60f5fba0e96d00111753bd6cb72893fa │ │ │ │ │ ├── .projects │ │ │ │ │ │ ├── .org.eclipse.jdt.core.external.folders │ │ │ │ │ │ │ └── .location │ │ │ │ │ │ ├── mytest1 │ │ │ │ │ │ │ ├── .indexes │ │ │ │ │ │ │ │ └── af │ │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ └── .markers │ │ │ │ │ │ ├── mytest2 │ │ │ │ │ │ │ ├── .indexes │ │ │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ ├── .location │ │ │ │ │ │ │ └── .markers │ │ │ │ │ │ ├── mytest3 │ │ │ │ │ │ │ ├── .indexes │ │ │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ ├── .location │ │ │ │ │ │ │ └── .markers │ │ │ │ │ │ └── myzkcomp │ │ │ │ │ │ │ ├── .indexes │ │ │ │ │ │ │ ├── 7 │ │ │ │ │ │ │ │ ├── 54 │ │ │ │ │ │ │ │ │ └── 49 │ │ │ │ │ │ │ │ │ │ └── 92 │ │ │ │ │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ │ │ │ ├── 9a │ │ │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ │ ├── cd │ │ │ │ │ │ │ │ │ └── 31 │ │ │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ │ └── e4 │ │ │ │ │ │ │ │ │ └── 92 │ │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ └── af │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ │ └── .markers │ │ │ │ │ ├── .root │ │ │ │ │ │ ├── .indexes │ │ │ │ │ │ │ ├── history.version │ │ │ │ │ │ │ ├── properties.index │ │ │ │ │ │ │ └── properties.version │ │ │ │ │ │ └── 18.tree │ │ │ │ │ └── .safetable │ │ │ │ │ │ └── org.eclipse.core.resources │ │ │ │ ├── org.eclipse.core.runtime │ │ │ │ │ └── .settings │ │ │ │ │ │ ├── com.collabnet.subversion.merge.prefs │ │ │ │ │ │ ├── com.vectrace.MercurialEclipse.prefs │ │ │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ │ │ ├── org.eclipse.debug.ui.prefs │ │ │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ │ │ ├── org.eclipse.jdt.launching.prefs │ │ │ │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ │ │ │ ├── org.eclipse.jst.jsp.core.prefs │ │ │ │ │ │ ├── org.eclipse.mylyn.context.core.prefs │ │ │ │ │ │ ├── org.eclipse.mylyn.monitor.ui.prefs │ │ │ │ │ │ ├── org.eclipse.pde.core.prefs │ │ │ │ │ │ ├── org.eclipse.team.cvs.ui.prefs │ │ │ │ │ │ ├── org.eclipse.team.ui.prefs │ │ │ │ │ │ ├── org.eclipse.ui.editors.prefs │ │ │ │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ │ │ │ ├── org.eclipse.ui.prefs │ │ │ │ │ │ ├── org.eclipse.ui.workbench.prefs │ │ │ │ │ │ ├── org.eclipse.wst.jsdt.ui.prefs │ │ │ │ │ │ ├── org.eclipse.wst.sse.core.prefs │ │ │ │ │ │ ├── org.eclipse.wst.sse.ui.prefs │ │ │ │ │ │ ├── org.eclipse.wst.ws.service.policy.prefs │ │ │ │ │ │ ├── org.maven.ide.eclipse.prefs │ │ │ │ │ │ ├── org.tigris.subversion.subclipse.tools.usage.prefs │ │ │ │ │ │ └── org.tigris.subversion.subclipse.ui.prefs │ │ │ │ ├── org.eclipse.debug.core │ │ │ │ │ └── .launches │ │ │ │ │ │ └── mytest1.launch │ │ │ │ ├── org.eclipse.debug.ui │ │ │ │ │ ├── dialog_settings.xml │ │ │ │ │ └── launchConfigurationHistory.xml │ │ │ │ ├── org.eclipse.jdt.core │ │ │ │ │ ├── .org.eclipse.jdt.core.external.folders │ │ │ │ │ │ └── .project │ │ │ │ │ ├── 1044318444.index │ │ │ │ │ ├── 1267014198.index │ │ │ │ │ ├── 1728417131.index │ │ │ │ │ ├── 1821669047.index │ │ │ │ │ ├── 1874461789.index │ │ │ │ │ ├── 1954427529.index │ │ │ │ │ ├── 2803370235.index │ │ │ │ │ ├── 2932271079.index │ │ │ │ │ ├── 2968261911.index │ │ │ │ │ ├── 2969153975.index │ │ │ │ │ ├── 3054088578.index │ │ │ │ │ ├── 3199502097.index │ │ │ │ │ ├── 3531157204.index │ │ │ │ │ ├── 3661030295.index │ │ │ │ │ ├── 3697699684.index │ │ │ │ │ ├── 3859200656.index │ │ │ │ │ ├── 3984024371.index │ │ │ │ │ ├── 3999555203.index │ │ │ │ │ ├── 4046899687.index │ │ │ │ │ ├── 4257325822.index │ │ │ │ │ ├── 503760286.index │ │ │ │ │ ├── 522671989.index │ │ │ │ │ ├── 531759143.index │ │ │ │ │ ├── 556421805.index │ │ │ │ │ ├── 58262047.index │ │ │ │ │ ├── 950152239.index │ │ │ │ │ ├── 951623278.index │ │ │ │ │ ├── externalLibsTimeStamps │ │ │ │ │ ├── javaLikeNames.txt │ │ │ │ │ ├── nonChainingJarsCache │ │ │ │ │ ├── savedIndexNames.txt │ │ │ │ │ └── variablesAndContainers.dat │ │ │ │ ├── org.eclipse.jdt.launching │ │ │ │ │ └── libraryInfos.xml │ │ │ │ ├── org.eclipse.jdt.ui │ │ │ │ │ ├── OpenTypeHistory.xml │ │ │ │ │ ├── QualifiedTypeNameHistory.xml │ │ │ │ │ └── dialog_settings.xml │ │ │ │ ├── org.eclipse.ltk.core.refactoring │ │ │ │ │ └── .refactorings │ │ │ │ │ │ ├── .workspace │ │ │ │ │ │ └── 2012 │ │ │ │ │ │ │ └── 3 │ │ │ │ │ │ │ └── 11 │ │ │ │ │ │ │ ├── refactorings.history │ │ │ │ │ │ │ └── refactorings.index │ │ │ │ │ │ ├── TestNormalJavaProject │ │ │ │ │ │ └── 2012 │ │ │ │ │ │ │ └── 3 │ │ │ │ │ │ │ └── 11 │ │ │ │ │ │ │ ├── refactorings.history │ │ │ │ │ │ │ └── refactorings.index │ │ │ │ │ │ └── myzkcomp │ │ │ │ │ │ └── 2012 │ │ │ │ │ │ └── 3 │ │ │ │ │ │ └── 11 │ │ │ │ │ │ ├── refactorings.history │ │ │ │ │ │ └── refactorings.index │ │ │ │ ├── org.eclipse.mylyn.trac.core │ │ │ │ │ └── repositoryConfigurations │ │ │ │ ├── org.eclipse.pde.core │ │ │ │ │ ├── .cache │ │ │ │ │ │ └── clean-cache.properties │ │ │ │ │ ├── .local_targets │ │ │ │ │ │ └── 1331725877195.target │ │ │ │ │ ├── 1082649649435.target │ │ │ │ │ │ ├── .lazy │ │ │ │ │ │ ├── .pluginInfo │ │ │ │ │ │ └── .state │ │ │ │ │ └── 1097746439352.target │ │ │ │ │ │ ├── .lazy │ │ │ │ │ │ ├── .pluginInfo │ │ │ │ │ │ └── .state │ │ │ │ ├── org.eclipse.team.cvs.core │ │ │ │ │ └── .running │ │ │ │ ├── org.eclipse.ui.ide │ │ │ │ │ └── dialog_settings.xml │ │ │ │ ├── org.eclipse.ui.workbench │ │ │ │ │ ├── dialog_settings.xml │ │ │ │ │ ├── workbench.xml │ │ │ │ │ └── workingsets.xml │ │ │ │ ├── org.eclipse.wst.internet.cache │ │ │ │ │ └── cache.xml │ │ │ │ ├── org.eclipse.wst.jsdt.core │ │ │ │ │ ├── externalLibsTimeStamps │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── baseBrowserLibrary.js │ │ │ │ │ │ ├── browserWindow.js │ │ │ │ │ │ ├── system.js │ │ │ │ │ │ └── xhr.js │ │ │ │ │ └── variablesAndContainers.dat │ │ │ │ ├── org.eclipse.wst.jsdt.ui │ │ │ │ │ ├── OpenTypeHistory.xml │ │ │ │ │ └── QualifiedTypeNameHistory.xml │ │ │ │ ├── org.eclipse.wst.sse.ui │ │ │ │ │ └── dialog_settings.xml │ │ │ │ ├── org.eclipse.wst.xml.core │ │ │ │ │ ├── default_catalog.xml │ │ │ │ │ └── system_catalog.xml │ │ │ │ ├── org.tigris.subversion.subclipse.ui │ │ │ │ │ └── dialog_settings.xml │ │ │ │ └── runjettyrun │ │ │ │ │ ├── mytest1.classpath │ │ │ │ │ └── mytest1.scanlist │ │ │ └── version.ini │ │ ├── External Plug-in Libraries │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ └── .searchable │ │ ├── TestNormalJavaProject │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ └── webcontent │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ ├── mytest1 │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ └── org.maven.ide.eclipse.prefs │ │ │ ├── pom.xml │ │ │ └── webcontent │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ ├── mytest2 │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ └── org.maven.ide.eclipse.prefs │ │ │ └── pom.xml │ │ ├── mytest3 │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ └── org.maven.ide.eclipse.prefs │ │ │ └── pom.xml │ │ └── myzkcomp │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.maven.ide.eclipse.prefs │ │ │ ├── pom.xml │ │ │ ├── resources │ │ │ ├── metainfo │ │ │ │ └── zk │ │ │ │ │ └── lang-addon.xml │ │ │ └── web │ │ │ │ └── js │ │ │ │ └── test │ │ │ │ ├── Mylabel.js │ │ │ │ ├── css │ │ │ │ └── mylabel.css.dsp │ │ │ │ ├── mold │ │ │ │ └── mylabel.js │ │ │ │ └── zk.wpd │ │ │ ├── src │ │ │ └── org │ │ │ │ └── test │ │ │ │ ├── Mylabel.java │ │ │ │ └── Version.java │ │ │ ├── target │ │ │ └── classes │ │ │ │ └── org │ │ │ │ └── test │ │ │ │ ├── Mylabel.class │ │ │ │ └── Version.class │ │ │ └── test │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── web.xml │ │ │ └── zk.xml │ │ │ └── index.zul │ └── src │ │ └── runjettyrun │ │ └── test │ │ ├── FirstTest.java │ │ └── widget │ │ └── RJRSWTBotTree.java └── updatesite │ ├── .project │ ├── category.xml │ └── pom.xml ├── currentVersion ├── fixVersion.sh ├── pom.xml └── release.sh /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | target 3 | /Jetty7Support/plugin-jetty7/lib/bootstrap.jar 4 | /Jetty8Support/plugin-jetty8/lib/bootstrap.jar 5 | /Jetty9Support/plugin-jetty9/lib/bootstrap.jar 6 | /Runjettyrun/plugin/lib/bootstrap.jar 7 | /Jetty93Support/plugin-jetty93/lib/bootstrap.jar 8 | /Jetty94Support/plugin-jetty94/lib/bootstrap.jar 9 | /Jetty948Support/plugin-jetty948/lib/bootstrap.jar 10 | -------------------------------------------------------------------------------- /Jetty7Support/feature-jetty7/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | run-jetty-run-feature-jetty7 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.FeatureBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.pde.FeatureNature 21 | org.eclipse.wst.common.project.facet.core.nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Jetty7Support/feature-jetty7/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /Jetty7Support/feature-jetty7/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty7support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun_feature_support_jetty7 13 | 1.3.5-SNAPSHOT 14 | eclipse-feature 15 | 16 | -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jun 09 00:53:27 CST 2011 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 | org.eclipse.jdt.core.compiler.compliance=1.6 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.6 9 | -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Run-jetty-run-jetty7-support 4 | Bundle-SymbolicName: runjettyrun.jetty7;singleton:=true 5 | Bundle-Version: 1.3.5.qualifier 6 | Bundle-Activator: run_jetty_run_jetty7.Activator 7 | Require-Bundle: org.eclipse.ui, 8 | org.eclipse.core.runtime, 9 | runjettyrun;bundle-version="1.2.2", 10 | org.eclipse.jdt.launching 11 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 12 | Bundle-ActivationPolicy: lazy 13 | -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/jndilib/javax.activation-1.1.0.v201105071233.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/jndilib/javax.activation-1.1.0.v201105071233.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/jndilib/javax.activation_1.1.0.v201005080500.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/jndilib/javax.activation_1.1.0.v201005080500.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/jndilib/javax.mail.glassfish_1.4.1.v201005082020.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/jndilib/javax.mail.glassfish_1.4.1.v201005082020.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/com.sun.el_1.0.0.v201004190952.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/com.sun.el_1.0.0.v201004190952.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/ecj-3.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/ecj-3.6.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/javax.el_2.1.0.v201004190952.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/javax.el_2.1.0.v201004190952.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/javax.servlet.jsp.jstl_1.2.0.v201004190952.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/javax.servlet.jsp.jstl_1.2.0.v201004190952.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/javax.servlet.jsp_2.1.0.v201004190952.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/javax.servlet.jsp_2.1.0.v201004190952.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-ajp-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-ajp-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-annotations-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-annotations-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-client-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-client-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-continuation-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-continuation-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-deploy-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-deploy-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-http-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-http-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-io-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-io-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-jmx-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-jmx-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-jndi-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-jndi-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-overlay-deployer-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-overlay-deployer-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-plus-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-plus-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-policy-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-policy-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-rewrite-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-rewrite-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-security-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-security-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-server-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-server-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-servlet-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-servlet-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-servlets-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-servlets-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-util-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-util-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-webapp-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-webapp-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-websocket-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-websocket-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/jetty-xml-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/jetty-xml-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/org.apache.jasper.glassfish_2.1.0.v201007080150.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/org.apache.jasper.glassfish_2.1.0.v201007080150.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/org.apache.taglibs.standard.glassfish_1.2.0.v201004190952.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/org.apache.taglibs.standard.glassfish_1.2.0.v201004190952.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/servlet-api-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/servlet-api-2.5.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/spdy-core-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/spdy-core-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/spdy-jetty-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/spdy-jetty-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/lib/spdy-jetty-http-7.6.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty7Support/plugin-jetty7/lib/spdy-jetty-http-7.6.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Jetty7Support/plugin-jetty7/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty7support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun.jetty7 13 | 1.3.5-SNAPSHOT 14 | eclipse-plugin 15 | 16 | -------------------------------------------------------------------------------- /Jetty8Support/feature-jetty8/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | run-jetty-run-feature-jetty8 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.FeatureBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.pde.FeatureNature 21 | org.eclipse.wst.common.project.facet.core.nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Jetty8Support/feature-jetty8/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /Jetty8Support/feature-jetty8/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty8support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun_feature_support_jetty8 13 | 1.3.5-SNAPSHOT 14 | eclipse-feature 15 | 16 | -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jun 09 00:56:54 CST 2011 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Run-jetty-run-jetty8 4 | Bundle-SymbolicName: runjettyrun.jetty8;singleton:=true 5 | Bundle-Version: 1.3.5.qualifier 6 | Bundle-Activator: run_jetty_run_jetty8.Activator 7 | Require-Bundle: org.eclipse.ui, 8 | org.eclipse.core.runtime, 9 | runjettyrun;bundle-version="1.2.2.20110609", 10 | org.eclipse.jdt.launching 11 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 12 | Bundle-ActivationPolicy: lazy 13 | -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/jndilib/javax.activation_1.1.0.v201105071233.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/jndilib/javax.activation_1.1.0.v201105071233.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/jndilib/javax.mail.glassfish_1.4.1.v201005082020.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/jndilib/javax.mail.glassfish_1.4.1.v201005082020.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/com.sun.el-2.2.0.v201108011116.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/com.sun.el-2.2.0.v201108011116.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/javax.annotation_1.1.0.v201105051105.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/javax.annotation_1.1.0.v201105051105.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/javax.el-2.2.0.v201108011116.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/javax.el-2.2.0.v201108011116.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/javax.servlet.jsp-2.2.0.v201112011158.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/javax.servlet.jsp-2.2.0.v201112011158.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/javax.servlet.jsp.jstl-1.2.0.v201105211821.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/javax.servlet.jsp.jstl-1.2.0.v201105211821.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-ajp-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-ajp-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-annotations-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-annotations-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-client-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-client-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-continuation-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-continuation-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-deploy-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-deploy-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-http-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-http-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-io-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-io-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-jmx-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-jmx-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-jndi-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-jndi-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-overlay-deployer-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-overlay-deployer-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-plus-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-plus-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-policy-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-policy-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-rewrite-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-rewrite-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-security-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-security-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-server-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-server-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-servlet-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-servlet-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-servlets-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-servlets-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-util-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-util-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-webapp-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-webapp-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-websocket-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-websocket-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jetty-xml-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jetty-xml-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/jsp-impl-2.2.2.b05.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/jsp-impl-2.2.2.b05.0.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/org.apache.jasper.glassfish-2.2.2.v201112011158.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/org.apache.jasper.glassfish-2.2.2.v201112011158.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/org.apache.taglibs.standard.glassfish-1.2.0.v201112081803.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/org.apache.taglibs.standard.glassfish-1.2.0.v201112081803.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/org.objectweb.asm_3.3.1.v201101071600.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/org.objectweb.asm_3.3.1.v201101071600.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/servlet-api-3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/servlet-api-3.0.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/spdy-core-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/spdy-core-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/spdy-jetty-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/spdy-jetty-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/lib/spdy-jetty-http-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty8Support/plugin-jetty8/lib/spdy-jetty-http-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Jetty8Support/plugin-jetty8/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty8support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun.jetty8 13 | 1.3.5-SNAPSHOT 14 | eclipse-plugin 15 | 16 | -------------------------------------------------------------------------------- /Jetty93Support/feature-jetty93/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | run-jetty-run-feature-jetty93 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.FeatureBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.pde.FeatureNature 21 | org.eclipse.wst.common.project.facet.core.nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Jetty93Support/feature-jetty93/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /Jetty93Support/feature-jetty93/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty93support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun_feature_support_jetty93 13 | 1.3.5-SNAPSHOT 14 | eclipse-feature 15 | 16 | -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/annotations/asm-5.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/annotations/asm-5.0.1.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/annotations/asm-commons-5.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/annotations/asm-commons-5.0.1.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/annotations/javax.annotation-api-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/annotations/javax.annotation-api-1.2.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/apache-jsp/org.eclipse.jdt.core.compiler.ecj-4.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/apache-jsp/org.eclipse.jdt.core.compiler.ecj-4.4.2.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/apache-jsp/org.mortbay.jasper.apache-el-8.0.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/apache-jsp/org.mortbay.jasper.apache-el-8.0.27.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.0.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.0.27.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/cdi-core-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/cdi-core-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/cdi-servlet-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/cdi-servlet-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/cdi-websocket-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/cdi-websocket-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/ext/.donotdelete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/ext/.donotdelete -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/fcgi/fcgi-client-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/fcgi/fcgi-client-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/fcgi/fcgi-server-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/fcgi/fcgi-server-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/gcloud-session-manager-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/gcloud-session-manager-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/http2/http2-common-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/http2/http2-common-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/http2/http2-hpack-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/http2/http2-hpack-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/http2/http2-server-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/http2/http2-server-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jaspi/javax.security.auth.message-1.0.0.v201108011116.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jaspi/javax.security.auth.message-1.0.0.v201108011116.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-alpn-server-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-alpn-server-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-annotations-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-annotations-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-client-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-client-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-continuation-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-continuation-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-deploy-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-deploy-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-http-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-http-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-infinispan-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-infinispan-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-io-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-io-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-jaas-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-jaas-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-jaspi-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-jaspi-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-jmx-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-jmx-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-jndi-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-jndi-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-nosql-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-nosql-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-plus-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-plus-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-proxy-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-proxy-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-quickstart-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-quickstart-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-rewrite-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-rewrite-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-schemas-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-schemas-3.1.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-security-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-security-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-server-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-server-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-servlet-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-servlet-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-servlets-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-servlets-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-util-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-util-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-webapp-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-webapp-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jetty-xml-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jetty-xml-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jndi/javax.mail.glassfish-1.4.1.v201005082020.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jndi/javax.mail.glassfish-1.4.1.v201005082020.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/jndi/javax.transaction-api-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/jndi/javax.transaction-api-1.2.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/monitor/jetty-monitor-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/monitor/jetty-monitor-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/servlet-api-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/servlet-api-3.1.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/setuid/jetty-setuid-java-1.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/setuid/jetty-setuid-java-1.0.3.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/setuid/libsetuid-linux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/setuid/libsetuid-linux.so -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/setuid/libsetuid-osx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/setuid/libsetuid-osx.so -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/spring/jetty-spring-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/spring/jetty-spring-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/websocket/javax-websocket-client-impl-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/websocket/javax-websocket-client-impl-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/websocket/javax-websocket-server-impl-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/websocket/javax-websocket-server-impl-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/websocket/javax.websocket-api-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/websocket/javax.websocket-api-1.0.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/websocket/websocket-api-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/websocket/websocket-api-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/websocket/websocket-client-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/websocket/websocket-client-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/websocket/websocket-common-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/websocket/websocket-common-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/websocket/websocket-server-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/websocket/websocket-server-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/lib/websocket/websocket-servlet-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty93Support/plugin-jetty93/lib/websocket/websocket-servlet-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Jetty93Support/plugin-jetty93/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty93support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun.jetty93 13 | 1.3.5-SNAPSHOT 14 | eclipse-plugin 15 | 16 | -------------------------------------------------------------------------------- /Jetty948Support/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | runjettyrun-jetty948support-parent 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.m2e.core.maven2Builder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.m2e.core.maven2Nature 16 | 17 | 18 | -------------------------------------------------------------------------------- /Jetty948Support/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Jetty948Support/feature-jetty948/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Jetty948Support/feature-jetty948/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /Jetty948Support/feature-jetty948/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty948support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun_feature_support_jetty948 13 | 1.3.5-SNAPSHOT 14 | eclipse-feature 15 | 16 | 17 | -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/alpn-api-1.1.3.v20160715.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/alpn-api-1.1.3.v20160715.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/annotations/asm-6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/annotations/asm-6.0.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/annotations/asm-commons-6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/annotations/asm-commons-6.0.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/annotations/javax.annotation-api-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/annotations/javax.annotation-api-1.2.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/apache-jsp/org.eclipse.jdt.ecj-3.12.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/apache-jsp/org.eclipse.jdt.ecj-3.12.3.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/apache-jsp/org.mortbay.jasper.apache-el-8.5.23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/apache-jsp/org.mortbay.jasper.apache-el-8.5.23.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.5.23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.5.23.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/cdi-2-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/cdi-2-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/cdi-core-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/cdi-core-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/cdi-servlet-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/cdi-servlet-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/ext/.donotdelete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/ext/.donotdelete -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/fcgi/fcgi-client-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/fcgi/fcgi-client-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/fcgi/fcgi-server-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/fcgi/fcgi-server-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/http2/http2-common-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/http2/http2-common-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/http2/http2-hpack-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/http2/http2-hpack-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/http2/http2-server-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/http2/http2-server-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jaspi/javax.security.auth.message-1.0.0.v201108011116.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jaspi/javax.security.auth.message-1.0.0.v201108011116.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-alpn-conscrypt-server-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-alpn-conscrypt-server-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-alpn-java-server-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-alpn-java-server-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-alpn-openjdk8-server-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-alpn-openjdk8-server-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-alpn-server-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-alpn-server-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-annotations-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-annotations-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-client-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-client-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-continuation-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-continuation-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-deploy-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-deploy-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-gcloud-session-manager-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-gcloud-session-manager-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-hazelcast-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-hazelcast-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-http-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-http-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-infinispan-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-infinispan-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-io-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-io-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-jaas-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-jaas-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-jaspi-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-jaspi-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-jmx-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-jmx-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-jndi-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-jndi-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-memcached-sessions-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-memcached-sessions-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-nosql-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-nosql-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-plus-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-plus-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-proxy-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-proxy-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-quickstart-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-quickstart-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-rewrite-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-rewrite-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-schemas-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-schemas-3.1.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-security-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-security-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-server-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-server-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-servlet-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-servlet-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-servlets-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-servlets-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-unixsocket-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-unixsocket-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-util-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-util-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-webapp-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-webapp-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/jetty-xml-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/jetty-xml-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/mail/javax.mail.glassfish-1.4.1.v201005082020.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/mail/javax.mail.glassfish-1.4.1.v201005082020.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/servlet-api-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/servlet-api-3.1.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/setuid/jetty-setuid-java-1.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/setuid/jetty-setuid-java-1.0.3.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/setuid/libsetuid-linux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/setuid/libsetuid-linux.so -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/setuid/libsetuid-osx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/setuid/libsetuid-osx.so -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/spring/jetty-spring-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/spring/jetty-spring-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/transactions/javax.transaction-api-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/transactions/javax.transaction-api-1.2.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/websocket/javax-websocket-client-impl-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/websocket/javax-websocket-client-impl-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/websocket/javax-websocket-server-impl-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/websocket/javax-websocket-server-impl-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/websocket/javax.websocket-api-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/websocket/javax.websocket-api-1.0.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/websocket/websocket-api-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/websocket/websocket-api-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/websocket/websocket-client-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/websocket/websocket-client-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/websocket/websocket-common-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/websocket/websocket-common-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/websocket/websocket-server-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/websocket/websocket-server-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/lib/websocket/websocket-servlet-9.4.8.v20171121.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty948Support/plugin-jetty948/lib/websocket/websocket-servlet-9.4.8.v20171121.jar -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Jetty948Support/plugin-jetty948/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty948support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun.jetty948 13 | 1.3.5-SNAPSHOT 14 | eclipse-plugin 15 | 16 | 17 | -------------------------------------------------------------------------------- /Jetty94Support/feature-jetty94/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | run-jetty-run-feature-jetty94 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.FeatureBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.pde.FeatureNature 21 | org.eclipse.wst.common.project.facet.core.nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Jetty94Support/feature-jetty94/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /Jetty94Support/feature-jetty94/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty94support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun_feature_support_jetty94 13 | 1.3.5-SNAPSHOT 14 | eclipse-feature 15 | 16 | 17 | -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/annotations/asm-5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/annotations/asm-5.1.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/annotations/asm-commons-5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/annotations/asm-commons-5.1.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/annotations/javax.annotation-api-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/annotations/javax.annotation-api-1.2.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/apache-jsp/org.eclipse.jdt.core.compiler.ecj-4.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/apache-jsp/org.eclipse.jdt.core.compiler.ecj-4.4.2.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/apache-jsp/org.mortbay.jasper.apache-el-8.5.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/apache-jsp/org.mortbay.jasper.apache-el-8.5.9.1.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.5.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.5.9.1.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/cdi-core-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/cdi-core-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/cdi-servlet-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/cdi-servlet-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/cdi-websocket-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/cdi-websocket-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/ext/.donotdelete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/ext/.donotdelete -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/fcgi/fcgi-client-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/fcgi/fcgi-client-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/fcgi/fcgi-server-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/fcgi/fcgi-server-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/http2/http2-common-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/http2/http2-common-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/http2/http2-hpack-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/http2/http2-hpack-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/http2/http2-server-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/http2/http2-server-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jaspi/javax.security.auth.message-1.0.0.v201108011116.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jaspi/javax.security.auth.message-1.0.0.v201108011116.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-alpn-server-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-alpn-server-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-annotations-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-annotations-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-client-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-client-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-continuation-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-continuation-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-deploy-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-deploy-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-gcloud-session-manager-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-gcloud-session-manager-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-http-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-http-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-infinispan-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-infinispan-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-io-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-io-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-jaas-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-jaas-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-jaspi-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-jaspi-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-jmx-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-jmx-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-jndi-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-jndi-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-memcached-sessions-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-memcached-sessions-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-nosql-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-nosql-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-plus-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-plus-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-proxy-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-proxy-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-quickstart-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-quickstart-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-rewrite-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-rewrite-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-schemas-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-schemas-3.1.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-security-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-security-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-server-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-server-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-servlet-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-servlet-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-servlets-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-servlets-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-unixsocket-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-unixsocket-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-util-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-util-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-webapp-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-webapp-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jetty-xml-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jetty-xml-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jndi/javax.mail.glassfish-1.4.1.v201005082020.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jndi/javax.mail.glassfish-1.4.1.v201005082020.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/jndi/javax.transaction-api-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/jndi/javax.transaction-api-1.2.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/servlet-api-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/servlet-api-3.1.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/setuid/jetty-setuid-java-1.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/setuid/jetty-setuid-java-1.0.3.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/setuid/libsetuid-linux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/setuid/libsetuid-linux.so -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/setuid/libsetuid-osx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/setuid/libsetuid-osx.so -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/spring/jetty-spring-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/spring/jetty-spring-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/websocket/javax-websocket-client-impl-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/websocket/javax-websocket-client-impl-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/websocket/javax-websocket-server-impl-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/websocket/javax-websocket-server-impl-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/websocket/javax.websocket-api-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/websocket/javax.websocket-api-1.0.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/websocket/websocket-api-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/websocket/websocket-api-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/websocket/websocket-client-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/websocket/websocket-client-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/websocket/websocket-common-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/websocket/websocket-common-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/websocket/websocket-server-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/websocket/websocket-server-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/lib/websocket/websocket-servlet-9.4.6.v20170531.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty94Support/plugin-jetty94/lib/websocket/websocket-servlet-9.4.6.v20170531.jar -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Jetty94Support/plugin-jetty94/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty94support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun.jetty94 13 | 1.3.5-SNAPSHOT 14 | eclipse-plugin 15 | 16 | 17 | -------------------------------------------------------------------------------- /Jetty9Support/feature-jetty9/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | run-jetty-run-feature-jetty9 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.FeatureBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.pde.FeatureNature 21 | org.eclipse.wst.common.project.facet.core.nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Jetty9Support/feature-jetty9/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /Jetty9Support/feature-jetty9/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty9support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun_feature_support_jetty9 13 | 1.3.5-SNAPSHOT 14 | eclipse-feature 15 | 16 | -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jun 09 00:56:54 CST 2011 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Run-jetty-run-jetty9 4 | Bundle-SymbolicName: runjettyrun.jetty9;singleton:=true 5 | Bundle-Version: 1.3.5.qualifier 6 | Bundle-Activator: run_jetty_run_jetty9.Activator 7 | Require-Bundle: org.eclipse.ui, 8 | org.eclipse.core.runtime, 9 | runjettyrun;bundle-version="1.2.2.20110609", 10 | org.eclipse.jdt.launching 11 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 12 | Bundle-ActivationPolicy: lazy 13 | -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/jndilib/javax.activation_1.1.0.v201105071233.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/jndilib/javax.activation_1.1.0.v201105071233.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/jndilib/javax.mail.glassfish_1.4.1.v201005082020.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/jndilib/javax.mail.glassfish_1.4.1.v201005082020.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/com.sun.el-2.2.0.v201108011116.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/com.sun.el-2.2.0.v201108011116.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/javax.annotation_1.1.0.v201105051105.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/javax.annotation_1.1.0.v201105051105.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/javax.el-2.2.0.v201108011116.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/javax.el-2.2.0.v201108011116.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/javax.servlet.jsp-2.2.0.v201112011158.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/javax.servlet.jsp-2.2.0.v201112011158.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/javax.servlet.jsp.jstl-1.2.0.v201105211821.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/javax.servlet.jsp.jstl-1.2.0.v201105211821.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/javax.websocket-api-0.0.006.draft.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/javax.websocket-api-0.0.006.draft.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-annotations-8.1.8.v20121106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-annotations-8.1.8.v20121106.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-annotations-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-annotations-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-client-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-client-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-continuation-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-continuation-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-deploy-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-deploy-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-http-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-http-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-io-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-io-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-jaas-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-jaas-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-jmx-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-jmx-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-jndi-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-jndi-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-plus-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-plus-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-rewrite-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-rewrite-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-security-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-security-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-server-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-server-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-servlet-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-servlet-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-servlets-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-servlets-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-util-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-util-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-webapp-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-webapp-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/jetty-xml-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/jetty-xml-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/org.apache.jasper.glassfish-2.2.2.v201112011158.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/org.apache.jasper.glassfish-2.2.2.v201112011158.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/org.apache.taglibs.standard.glassfish-1.2.0.v201112081803.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/org.apache.taglibs.standard.glassfish-1.2.0.v201112081803.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/org.eclipse.jdt.core-3.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/org.eclipse.jdt.core-3.7.1.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/org.objectweb.asm_3.3.1.v201101071600.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/org.objectweb.asm_3.3.1.v201101071600.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/servlet-api-3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/servlet-api-3.0.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/spdy-client-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/spdy-client-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/spdy-core-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/spdy-core-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/spdy-http-server-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/spdy-http-server-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/spdy-server-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/spdy-server-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/websocket-api-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/websocket-api-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/websocket-client-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/websocket-client-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/websocket-common-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/websocket-common-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/websocket-server-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/websocket-server-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/lib/websocket-servlet-9.0.0.M3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Jetty9Support/plugin-jetty9/lib/websocket-servlet-9.0.0.M3.jar -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Jetty9Support/plugin-jetty9/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-jetty9support-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun.jetty9 13 | 1.3.5-SNAPSHOT 14 | eclipse-plugin 15 | 16 | -------------------------------------------------------------------------------- /Runjettyrun/feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | run-jetty-run-feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.FeatureBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.pde.FeatureNature 21 | org.eclipse.wst.common.project.facet.core.nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Runjettyrun/feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /Runjettyrun/feature/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun_feature 13 | 1.3.5-SNAPSHOT 14 | eclipse-feature 15 | 16 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jan 11 05:57:14 CST 2011 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu May 05 00:37:41 CST 2011 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.5 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.5 13 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/about.ini: -------------------------------------------------------------------------------- 1 | featureImage=icon/jetty.gif 2 | aboutText=run jetty run -------------------------------------------------------------------------------- /Runjettyrun/plugin/bootstrap.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/bootstrap.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/icons/jetty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/icons/jetty.gif -------------------------------------------------------------------------------- /Runjettyrun/plugin/jndilib/activation-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/jndilib/activation-1.1.1.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/jndilib/jetty-naming-6.1.26.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/jndilib/jetty-naming-6.1.26.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/jndilib/jetty-plus-6.1.26.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/jndilib/jetty-plus-6.1.26.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/jndilib/mail-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/jndilib/mail-1.4.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/lib/core-3.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/lib/core-3.1.1.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/lib/jetty-6.1.26.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/lib/jetty-6.1.26.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/lib/jetty-management-6.1.26.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/lib/jetty-management-6.1.26.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/lib/jetty-util-6.1.26.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/lib/jetty-util-6.1.26.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/lib/jsp-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/lib/jsp-2.1.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/lib/jsp-api-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/lib/jsp-api-2.1.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/lib/servlet-api-2.5-20081211.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/plugin/lib/servlet-api-2.5-20081211.jar -------------------------------------------------------------------------------- /Runjettyrun/plugin/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun 13 | 1.3.5-SNAPSHOT 14 | eclipse-plugin 15 | 16 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/src/runjettyrun/extensions/IJettyPackageProvider.java: -------------------------------------------------------------------------------- 1 | package runjettyrun.extensions; 2 | 3 | import org.eclipse.jdt.launching.IRuntimeClasspathEntry; 4 | 5 | public interface IJettyPackageProvider { 6 | 7 | public static final String JETTY_6_1_26 = "6.1.26"; 8 | 9 | public static final int TYPE_JETTY_BUNDLE = 0; 10 | 11 | public static final int TYPE_UTIL = 1; 12 | 13 | public IRuntimeClasspathEntry[] getPackage(String version, int type); 14 | 15 | public boolean acceptType(int type); 16 | 17 | public String getJettyVersion(); 18 | 19 | public boolean accpet(String ver); 20 | 21 | public String getName(); 22 | 23 | public String getText(); 24 | } 25 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/src/runjettyrun/launchshortcut/properties/RunJettyRunPropertiesTester.java: -------------------------------------------------------------------------------- 1 | package runjettyrun.launchshortcut.properties; 2 | 3 | import org.eclipse.core.expressions.PropertyTester; 4 | import org.eclipse.core.resources.IResource; 5 | 6 | import runjettyrun.tabs.RunJettyRunTab; 7 | 8 | public class RunJettyRunPropertiesTester extends PropertyTester 9 | { 10 | 11 | public boolean test(Object receiver, String property, Object[] args, 12 | Object expectedValue) { 13 | if(!(receiver instanceof IResource )) 14 | return false; 15 | 16 | IResource ir = (IResource) receiver; 17 | 18 | return RunJettyRunTab.isWebappProject(ir.getProject()); 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/src/runjettyrun/preferences/PreferenceConstants.java: -------------------------------------------------------------------------------- 1 | package runjettyrun.preferences; 2 | 3 | 4 | /** 5 | * Constant definitions for plug-in preferences 6 | */ 7 | public class PreferenceConstants { 8 | 9 | public static final String P_ENABLE_ECLIPSE_LISTENER = "enableEclipseListenerPreference"; 10 | 11 | public static final String P_DEFAULT_ENABLE_SCANNER = "defaultEnableScannerPreference"; 12 | 13 | public static final String P_AUTO_PORT = "autoPortPreference"; 14 | 15 | public static final String P_DEFAULT_JETTY_VERSION = "defaultJettyVersion"; 16 | 17 | public static final String P_LAZY_CLASSPATH_ENTRY_STATUS = "lazyClasspathEntryStatus"; 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/src/runjettyrun/tabs/classpath/IEntriesChangedListener.java: -------------------------------------------------------------------------------- 1 | package runjettyrun.tabs.classpath; 2 | 3 | 4 | /** 5 | * Listener interface to receive notification when entries in a runtime 6 | * classpath entry viewer change in some way. 7 | */ 8 | public interface IEntriesChangedListener { 9 | 10 | /** 11 | * Notification entries have changed in the viewer 12 | */ 13 | public void entriesChanged(IClasspathViewer viewer); 14 | } 15 | -------------------------------------------------------------------------------- /Runjettyrun/plugin/src/runjettyrun/utils/VersionUtil.java: -------------------------------------------------------------------------------- 1 | package runjettyrun.utils; 2 | 3 | public class VersionUtil { 4 | public static final boolean supportVersion(String version, String supportVersion, String... supportVersionPrefix){ 5 | if(version.equalsIgnoreCase(supportVersion)){ 6 | return true; 7 | } 8 | String lv = version.toLowerCase(); 9 | for(String svp: supportVersionPrefix){ 10 | if(lv.startsWith(svp.toLowerCase())){ 11 | return true; 12 | } 13 | } 14 | return false; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Runjettyrun/test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Runjettyrun/test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: RunJettyRunTest 4 | Bundle-SymbolicName: runjettyrun.uitest;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-ActivationPolicy: lazy 7 | Bundle-Vendor: TonyQ 8 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 9 | Require-Bundle: org.eclipse.swtbot.go 10 | -------------------------------------------------------------------------------- /Runjettyrun/test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.lock -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.mylyn/.tasks.xml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.mylyn/.tasks.xml.zip -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.mylyn/repositories.xml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.mylyn/repositories.xml.zip -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.mylyn/tasks.xml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.mylyn/tasks.xml.zip -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/com.vectrace.MercurialEclipse/commit_messages.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/14/c055d5dae86d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:17:46 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/2b/0046a9f4e86d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:30 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/2b/f0773109e96d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/2b/f0773109e96d001111f78b3a862bd7ca -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/3/10da40f9e96d00111753bd6cb72893fa: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | maven.test 4 | mytest2 5 | 0.0.1-SNAPSHOT 6 | 7 | 14 | 15 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/3f/e014d8dae86d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:17:46 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/49/90b5e805e96d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:59 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/4f/d09a3309e96d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | <%-- 2 | Here you could do any styling job you want , all CSS stuff. 3 | --%> 4 | <%@ taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c" %> 5 | 6 | .z-mylabel{ 7 | color:black; 8 | } -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/66/a04deb05e96d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:59 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/6b/9034a8f4e86d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:30 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/6e/90a946c7e96d00111753bd6cb72893fa: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | maven.test 4 | mytest2 5 | 0.0.1-SNAPSHOT 6 | 7 | 8 | org.zkoss.components 9 | mylabel 10 | 0.8.0 11 | 12 | 13 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/93/7005e4f9c96d00111ebcf42c425b7cd4: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:36:44 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 | org.eclipse.jdt.core.compiler.compliance=1.6 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.6 9 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/d/7003d7dae86d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:17:46 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/d9/403b3209e96d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/d9/403b3209e96d001111f78b3a862bd7ca -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/db/10fca6f4e86d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:30 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/ef/2015ea05e96d001111f78b3a862bd7ca: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:59 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.history/f3/60f5fba0e96d00111753bd6cb72893fa: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | maven.test 4 | mytest2 5 | 0.0.1-SNAPSHOT 6 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/.org.eclipse.jdt.core.external.folders/.location -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest1/.indexes/af/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest1/.indexes/af/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest1/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest1/.markers -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest2/.indexes/af/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest2/.indexes/af/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest2/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest2/.indexes/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest2/.location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest2/.location -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest2/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest2/.markers -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest3/.indexes/af/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest3/.indexes/af/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest3/.indexes/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest3/.indexes/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest3/.location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest3/.location -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest3/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/mytest3/.markers -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/54/49/92/3/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/54/49/92/3/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/54/49/92/9a/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/54/49/92/9a/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/54/49/92/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/54/49/92/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/cd/31/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/cd/31/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/e4/92/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/7/e4/92/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/af/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.indexes/af/history.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.projects/myzkcomp/.markers -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- 1 | /org.eclipse.core.resourcescontentCacheState2contentCacheTimestamp 1331743432574org.eclipse.jdt.corestateVersionNumber24org.eclipse.wst.jsdt.corestateVersionNumber21 -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.root/18.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.root/18.tree -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.collabnet.subversion.merge.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:47:03 CST 2012 2 | merge_provider_set=true 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.vectrace.MercurialEclipse.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:47:03 CST 2012 2 | eclipse.preferences.version=1 3 | hg=C\:\\eclipse-SDK-3.6.1-win32-x86_64\\eclipse\\plugins\\com.intland.hgbinary.win32_1.6.4\\os\\win32\\hg.exe 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:36:44 CST 2012 2 | version=1 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:55:47 CST 2012 2 | eclipse.preferences.version=1 3 | preferredTargets=default\:default| 4 | org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=\r\n\r\n 5 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:51:24 CST 2012 2 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | eclipse.preferences.version=1 5 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.6 8 | org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled 9 | org.eclipse.jdt.core.compiler.compliance=1.6 10 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:54:29 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.launching.PREF_VM_XML=\r\n\r\n\r\n\r\n\r\n\r\n 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.jsp.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Mar 15 01:48:00 CST 2012 2 | org.eclipse.jst.jsp.core.taglib.TaglibIndex=CLEAN 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:39:01 CST 2012 2 | eclipse.preferences.version=1 3 | mylyn.attention.migrated=true 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:39:01 CST 2012 2 | org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:54:29 CST 2012 2 | workspace_target_handle=local\:1331725877195.target 3 | eclipse.preferences.version=1 4 | platform_path=C\:\\eclipse-SDK-3.6.1-win32-x86_64\\eclipse 5 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.cvs.ui.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:47:03 CST 2012 2 | pref_first_startup=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:47:03 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.team.ui.first_time=false 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:54:29 CST 2012 2 | eclipse.preferences.version=1 3 | overviewRuler_migration=migrated_3.1 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs: -------------------------------------------------------------------------------- 1 | #Thu Mar 15 01:48:00 CST 2012 2 | eclipse.preferences.version=1 3 | tipsAndTricks=true 4 | platformState=1331743432574 5 | quickStart=true 6 | PROBLEMS_FILTERS_MIGRATE=true 7 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:43:16 CST 2012 2 | eclipse.preferences.version=1 3 | showIntro=false 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.jsdt.ui.prefs: -------------------------------------------------------------------------------- 1 | #Thu Mar 15 01:48:00 CST 2012 2 | useQuickDiffPrefPage=true 3 | tabWidthPropagated=true 4 | proposalOrderMigrated=true 5 | useAnnotationsPrefPage=true 6 | org.eclipse.jface.textfont=1|Courier New|10.0|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Courier New; 7 | org.eclipse.wst.jsdt.ui.javadoclocations.migrated=true 8 | eclipse.preferences.version=1 9 | fontPropagated=true 10 | org.eclipse.wst.jsdt.ui.editor.tab.width= 11 | org.eclipse.wst.jsdt.ui.formatterprofiles.version=11 12 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.sse.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:29:00 CST 2012 2 | task-tag-projects-already-scanned=External Plug-in Libraries,TestNormalJavaProject,mytest1,mytest2,myzkcomp,mytest3 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.sse.ui.prefs: -------------------------------------------------------------------------------- 1 | #Thu Mar 15 01:48:00 CST 2012 2 | useAnnotationsPrefPage=true 3 | eclipse.preferences.version=1 4 | content_assist_number_of_computers=16 5 | useQuickDiffPrefPage=true 6 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.ws.service.policy.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:39:24 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsissbp.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/ 4 | org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsiap.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/ 5 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:19:52 CST 2012 2 | eclipse.m2.offline=true 3 | eclipse.preferences.version=1 4 | eclipse.m2.updateIndexes=false 5 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.tigris.subversion.subclipse.tools.usage.prefs: -------------------------------------------------------------------------------- 1 | #Thu Mar 15 01:48:00 CST 2012 2 | eclipse.preferences.version=1 3 | ask_user_for_usage_report_preference=false 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.tigris.subversion.subclipse.ui.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 19:47:03 CST 2012 2 | eclipse.preferences.version=1 3 | pref_merge_provider=CollabNet Desktop 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.debug.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/.org.eclipse.jdt.core.external.folders/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | .org.eclipse.jdt.core.external.folders 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | .link2 14 | 2 15 | C:/wseclipse/org.eclipse.debug.ui 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1044318444.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1044318444.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1267014198.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1267014198.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1728417131.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1728417131.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1821669047.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1821669047.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1874461789.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1874461789.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1954427529.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/1954427529.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/2803370235.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/2803370235.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/2932271079.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/2932271079.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/2968261911.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/2968261911.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/2969153975.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/2969153975.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3054088578.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3054088578.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3199502097.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3199502097.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3531157204.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3531157204.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3661030295.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3661030295.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3697699684.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3697699684.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3859200656.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3859200656.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3984024371.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3984024371.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3999555203.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/3999555203.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/4046899687.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/4046899687.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/4257325822.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/4257325822.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/503760286.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/503760286.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/522671989.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/522671989.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/531759143.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/531759143.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/556421805.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/556421805.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/58262047.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/58262047.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/950152239.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/950152239.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/951623278.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/951623278.index -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/javaLikeNames.txt: -------------------------------------------------------------------------------- 1 | java -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache: -------------------------------------------------------------------------------- 1 | 0C:/Program Files/Java/jdk1.6.0_21/jre/lib/rt.jarAC:/Program Files/Java/jdk1.6.0_21/jre/lib/ext/sunjce_provider.jar2C:/Program Files/Java/jdk1.6.0_21/jre/lib/jsse.jar 2 | 3 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/.workspace/2012/3/11/refactorings.index: -------------------------------------------------------------------------------- 1 | 1331725161536 Rename Java project 'TestNormalJ2EEProject' 2 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/TestNormalJavaProject/2012/3/11/refactorings.index: -------------------------------------------------------------------------------- 1 | 1331738070280 Delete element 2 | 1331743474031 Copy folder 3 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/myzkcomp/2012/3/11/refactorings.history: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/myzkcomp/2012/3/11/refactorings.index: -------------------------------------------------------------------------------- 1 | 1331738344741 Delete element 2 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.mylyn.trac.core/repositoryConfigurations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.mylyn.trac.core/repositoryConfigurations -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties: -------------------------------------------------------------------------------- 1 | #Cached timestamps 2 | #Thu Mar 15 01:48:00 CST 2012 3 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/.local_targets/1331725877195.target: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | win32 10 | win32 11 | x86_64 12 | en_US 13 | 14 | 15 | -Dosgi.requiredJavaVersion=1.5 -Xms512m -Xmx1524m -Duser.language=en -Duser.country=US -Dfile.encoding=UTF-8 16 | 17 | 18 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/1082649649435.target/.lazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/1082649649435.target/.lazy -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/1082649649435.target/.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/1082649649435.target/.state -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/1097746439352.target/.lazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/1097746439352.target/.lazy -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/1097746439352.target/.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.pde.core/1097746439352.target/.state -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.team.cvs.core/.running: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.team.cvs.core/.running -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 |
7 |
8 | 9 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.wst.internet.cache/cache.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.wst.jsdt.core/externalLibsTimeStamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.wst.jsdt.core/externalLibsTimeStamps -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.wst.jsdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.wst.jsdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.wst.jsdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.wst.sse.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.eclipse.wst.xml.core/default_catalog.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/org.tigris.subversion.subclipse.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/.plugins/runjettyrun/mytest1.scanlist: -------------------------------------------------------------------------------- 1 | C:\wseclipse\runjettyrun.uitest\runtime-EclipseApplication\mytest1\target\classes;C:\wseclipse\runjettyrun.uitest\runtime-EclipseApplication\mytest2\target\classes;C:\wseclipse\runjettyrun.uitest\runtime-EclipseApplication\mytest1\webcontent\WEB-INF\web.xml -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/.metadata/version.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.core.runtime=1 -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/External Plug-in Libraries/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/External Plug-in Libraries/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | External Plug-in Libraries 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/External Plug-in Libraries/.searchable: -------------------------------------------------------------------------------- 1 | # 2 | #Thu Mar 15 01:47:59 CST 2012 3 | searchablePlugins=org.eclipse.debug.ui 4 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/TestNormalJavaProject/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/TestNormalJavaProject/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestNormalJavaProject 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest1/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | mytest1 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.maven.ide.eclipse.maven2Builder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.jdt.core.javanature 21 | org.maven.ide.eclipse.maven2Nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest1/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:17:46 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | org.eclipse.jdt.core.compiler.source=1.5 7 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest1/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:17:46 CST 2012 2 | activeProfiles= 3 | eclipse.preferences.version=1 4 | fullBuildGoals=process-test-resources 5 | resolveWorkspaceProjects=true 6 | resourceFilterGoals=process-resources resources\:testResources 7 | skipCompilerPlugin=true 8 | version=1 9 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest1/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | maven.test 4 | mytest1 5 | 0.0.1-SNAPSHOT 6 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest2/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | mytest2 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.maven.ide.eclipse.maven2Builder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.jdt.core.javanature 21 | org.maven.ide.eclipse.maven2Nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest2/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:30 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | org.eclipse.jdt.core.compiler.source=1.5 7 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest2/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:30 CST 2012 2 | activeProfiles= 3 | eclipse.preferences.version=1 4 | fullBuildGoals=process-test-resources 5 | resolveWorkspaceProjects=true 6 | resourceFilterGoals=process-resources resources\:testResources 7 | skipCompilerPlugin=true 8 | version=1 9 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest3/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | mytest3 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.maven.ide.eclipse.maven2Builder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.jdt.core.javanature 21 | org.maven.ide.eclipse.maven2Nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest3/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:30 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | org.eclipse.jdt.core.compiler.source=1.5 7 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest3/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:30 CST 2012 2 | activeProfiles= 3 | eclipse.preferences.version=1 4 | fullBuildGoals=process-test-resources 5 | resolveWorkspaceProjects=true 6 | resourceFilterGoals=process-resources resources\:testResources 7 | skipCompilerPlugin=true 8 | version=1 9 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/mytest3/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | maven.test 4 | mytest3 5 | 0.0.1-SNAPSHOT 6 | 7 | 14 | 15 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/myzkcomp/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/myzkcomp/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | myzkcomp 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.maven.ide.eclipse.maven2Builder 15 | 16 | 17 | 18 | 19 | 20 | org.maven.ide.eclipse.maven2Nature 21 | org.eclipse.jdt.core.javanature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/myzkcomp/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:59 CST 2012 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | org.eclipse.jdt.core.compiler.source=1.5 7 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/myzkcomp/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 14 23:18:58 CST 2012 2 | activeProfiles= 3 | eclipse.preferences.version=1 4 | fullBuildGoals=process-test-resources 5 | resolveWorkspaceProjects=true 6 | resourceFilterGoals=process-resources resources\:testResources 7 | skipCompilerPlugin=true 8 | version=1 9 | -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/myzkcomp/resources/web/js/test/css/mylabel.css.dsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Here you could do any styling job you want , all CSS stuff. 3 | --%> 4 | <%@ taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c" %> 5 | 6 | .z-mylabel{ 7 | color:black; 8 | } -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/myzkcomp/src/org/test/Version.java: -------------------------------------------------------------------------------- 1 | package org.test; 2 | 3 | public class Version { 4 | 5 | /** 6 | * The version UID used to identify the resources. 7 | */ 8 | public static final String UID = "0.8.0"; 9 | 10 | } -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/myzkcomp/target/classes/org/test/Mylabel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/myzkcomp/target/classes/org/test/Mylabel.class -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/myzkcomp/target/classes/org/test/Version.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzer/run-jetty-run/08e6c6841972656aa7e7b527f4c6b63e5c66534b/Runjettyrun/test/runtime-EclipseApplication/myzkcomp/target/classes/org/test/Version.class -------------------------------------------------------------------------------- /Runjettyrun/test/runtime-EclipseApplication/myzkcomp/test/webapp/index.zul: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Runjettyrun/updatesite/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | run-jetty-run-updatesite 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.UpdateSiteBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.UpdateSiteNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /Runjettyrun/updatesite/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | 6 | runjettyrun 7 | runjettyrun-parent 8 | 1.3.5-SNAPSHOT 9 | 10 | 11 | runjettyrun 12 | runjettyrun_update 13 | 1.3.5-SNAPSHOT 14 | eclipse-repository 15 | 16 | -------------------------------------------------------------------------------- /currentVersion: -------------------------------------------------------------------------------- 1 | 1.3.5-SNAPSHOT 2 | -------------------------------------------------------------------------------- /fixVersion.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=$1 4 | 5 | echo $1 > currentVersion --------------------------------------------------------------------------------