本文介绍了XSD蚂蚁常春藤LIB&QUOT的位置;的antlib:org.apache.ivy.ant"对于IDE自动完成与XSD?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在IDE(IntelliJ IDEA的)与基于XSD自动完成创建XML编辑器的Ivy Ant任务,但我不能找到寄存器的XML命名空间的xmlns XSD:常春藤=的antlib:org.apache.ivy.ant

I want create Ivy Ant tasks in xml editor in IDE (Intellij iDEA) with autocomplete based on xsd , but I cannot find xsd for register XML namespace xmlns:ivy="antlib:org.apache.ivy.ant"

我在哪里可以找到它?

推荐答案

可能是,有一个在过去一段时间的讨论开始没有XSD,但自2011年5月,至少常青藤计划是在

might be, there was no xsd in the past time this discussion started, but at least since may 2011 the ivy scheme is well documented at

>

所以,重新开始使用该计划,你只需要:

so, to start over using the scheme, you just need:

<?xml version="1.0" encoding="UTF-8"?>
<project name="yourproject"
         xmlns:ivy="antlib:org.apache.ivy.ant"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd"
>
<!-- … -->

这篇关于XSD蚂蚁常春藤LIB&QUOT的位置;的antlib:org.apache.ivy.ant&QUOT;对于IDE自动完成与XSD?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 14:33