mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 21:29:57 +00:00
hg kwexpand
--HG-- branch : 0.0.9.x
This commit is contained in:
parent
bc6b62c94f
commit
59321a5549
46
pom.xml
46
pom.xml
@ -80,6 +80,52 @@
|
||||
<nohelp>true</nohelp>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.7</version>
|
||||
<configuration>
|
||||
<target>
|
||||
<taskdef
|
||||
resource="net/sf/antcontrib/antcontrib.properties"
|
||||
classpathref="maven.plugin.classpath" />
|
||||
<if>
|
||||
<available file=".hg/hgrc" />
|
||||
<then>
|
||||
<echo>call hg kwexpand</echo>
|
||||
<echo file=".hg/hgrc">
|
||||
<![CDATA[
|
||||
[paths]
|
||||
default = https://dex2jar.googlecode.com/hg
|
||||
[extensions]
|
||||
keyword =
|
||||
[keyword]
|
||||
**.java =
|
||||
[keywordmaps]
|
||||
Rev = {node|short}
|
||||
]]>
|
||||
</echo>
|
||||
<exec executable="hg">
|
||||
<arg value="kwexpand" />
|
||||
</exec>
|
||||
</then>
|
||||
</if>
|
||||
</target>
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>ant-contrib</groupId>
|
||||
<artifactId>ant-contrib</artifactId>
|
||||
<version>1.0b3</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<properties>
|
||||
|
Loading…
Reference in New Issue
Block a user