sagioto / maven2gradle

converts maven dependencies to gradle format
http://sagioto.github.io/maven2gradle/
MIT License
73 stars 35 forks source link

Create opportunity recognize dependencies with properties #2

Open andreevym opened 7 years ago

andreevym commented 7 years ago
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <properties>
        <httpclient.version>4.5.2</httpclient.version>
    </properties>
    <dependencies>
        <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>${httpclient.version}</version>
        </dependency>
    </dependencies>
</project>
andreevym commented 7 years ago

https://github.com/sagioto/maven2gradle/pull/3