Files download
File Operation
hello-0.1.pom download
hello-0.1-sources.jar download
Apache Maven
<dependency>
  <groupId>com.lijinchao</groupId>
  <artifactId>hello</artifactId>
  <version>0.1</version>
  <type>aar</type>
</dependency>
Gradle Groovy
implementation 'com.lijinchao:hello:0.1'
Gradle Kotlin
implementation("com.lijinchao:hello:0.1")
Scala SBT
libraryDependencies += "com.lijinchao" % "hello" % "0.1"
Groovy Grape
@Grapes(
  @Grab(group='com.lijinchao', module='hello', version='0.1')
)
Apache Ivy
<dependency org="com.lijinchao" name="hello" rev="0.1" />
Leiningen
[com.lijinchao/hello "0.1"]
Apache Buildr
'com.lijinchao:hello:jar:0.1'