2012-03-30 14:04:43 -04:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
-->
|
2012-12-10 11:12:25 -05:00
|
|
|
<!DOCTYPE ivy-module [
|
2013-04-22 13:25:11 -04:00
|
|
|
<!ENTITY jetty.version "8.1.10.v20130312">
|
2012-12-10 11:12:25 -05:00
|
|
|
]>
|
2012-03-30 14:04:43 -04:00
|
|
|
<ivy-module version="2.0">
|
|
|
|
<info organisation="org.apache.solr" module="example"/>
|
|
|
|
<configurations>
|
2012-11-08 09:50:41 -05:00
|
|
|
<conf name="jetty" description="jetty jars"/>
|
|
|
|
<conf name="start" description="jetty start jar"/>
|
2012-03-30 14:04:43 -04:00
|
|
|
<conf name="servlet" description="servlet-api jar"/>
|
2013-03-27 10:09:38 -04:00
|
|
|
<conf name="logging" description="logging setup"/>
|
2012-03-30 14:04:43 -04:00
|
|
|
</configurations>
|
|
|
|
|
|
|
|
<dependencies>
|
2013-03-27 10:09:38 -04:00
|
|
|
|
|
|
|
<dependency org="log4j" name="log4j" rev="1.2.16" transitive="false" conf="logging->default"/>
|
|
|
|
<dependency org="org.slf4j" name="slf4j-api" rev="1.6.6" transitive="false" conf="logging->default"/>
|
|
|
|
<dependency org="org.slf4j" name="jcl-over-slf4j" rev="1.6.6" transitive="false" conf="logging->default"/>
|
|
|
|
<dependency org="org.slf4j" name="jul-to-slf4j" rev="1.6.6" transitive="false" conf="logging->default"/>
|
|
|
|
<dependency org="org.slf4j" name="slf4j-log4j12" rev="1.6.6" transitive="false" conf="logging->default"/>
|
2012-12-10 11:12:25 -05:00
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-continuation" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-deploy" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-http" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-io" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-jmx" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-security" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-server" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-servlet" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-util" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-webapp" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-xml" rev="&jetty.version;" transitive="false" conf="jetty->default"/>
|
|
|
|
<dependency org="org.eclipse.jetty" name="jetty-start" rev="&jetty.version;" transitive="false" conf="start->default"/>
|
2012-03-30 14:04:43 -04:00
|
|
|
<dependency org="org.eclipse.jetty.orbit" name="javax.servlet" rev="3.0.0.v201112011016" transitive="false" conf="servlet->default">
|
|
|
|
<artifact name="javax.servlet" type="orbit" ext="jar"/>
|
|
|
|
</dependency>
|
|
|
|
<exclude org="*" ext="*" matcher="regexp" type="${ivy.exclude.types}"/>
|
|
|
|
</dependencies>
|
|
|
|
</ivy-module>
|