-
Notifications
You must be signed in to change notification settings - Fork 8
/
ivy.xml
19 lines (18 loc) · 1.36 KB
/
ivy.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<ivy-module version="2.0">
<info organisation="com.chenlb" module="mmseg4j-all" revision="1.8.3"/>
<configurations>
<conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf" extends="runtime,master"/>
<conf name="master" visibility="public" description="contains only the artifact published by this module itself, with no transitive dependencies"/>
<conf name="compile" visibility="public" description="this is the default scope, used if none is specified. Compile dependencies are available in all classpaths."/>
<conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile"/>
</configurations>
<publications>
<!-- artifact name="mmseg4j-all" type="jar" ext="jar" conf="master" /-->
</publications>
<dependencies>
<!-- solr/lucene -->
<dependency org="org.apache.lucene" name="lucene-core" rev="3.1.0" conf="compile->master(*)"/>
<dependency org="org.apache.solr" name="solr-core" rev="3.1.0" conf="compile->master(*)"/>
<dependency org="org.apache.solr" name="solr-solrj" rev="3.1.0" conf="compile->master(*)"/>
</dependencies>
</ivy-module>