Skip to content

Commit d24c3cd

Browse files
committed
add maven repository
1 parent b9c4e53 commit d24c3cd

10 files changed

Lines changed: 84 additions & 0 deletions

File tree

glideavif/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44
apply plugin: 'kotlin-kapt'
5+
apply plugin: 'maven'
6+
7+
def deployTo = new File(rootDir, "repository")
58

69
android {
710
compileSdkVersion 29
@@ -55,3 +58,14 @@ dependencies {
5558
implementation "com.android.support:support-fragment"
5659
kapt 'com.github.bumptech.glide:compiler:4.11.0'
5760
}
61+
62+
uploadArchives {
63+
repositories {
64+
mavenDeployer {
65+
repository url: "file://${deployTo}"
66+
pom.version = '0.5.0'
67+
pom.groupId = 'jp.co.link_u.library.glideavif'
68+
pom.artifactId = 'glideavif'
69+
}
70+
}
71+
}
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
eebc535c5a7f14d0a8b1a445dc04a756
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
f7ad82b75819f6d26649d7dc67117623837f84fe
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>jp.co.link_u.library.glideavif</groupId>
6+
<artifactId>glideavif</artifactId>
7+
<version>0.5.0</version>
8+
<packaging>aar</packaging>
9+
<dependencies>
10+
<dependency>
11+
<groupId>org.jetbrains.kotlin</groupId>
12+
<artifactId>kotlin-android-extensions-runtime</artifactId>
13+
<version>1.3.50</version>
14+
<scope>compile</scope>
15+
</dependency>
16+
<dependency>
17+
<groupId>org.jetbrains.kotlin</groupId>
18+
<artifactId>kotlin-stdlib-jdk7</artifactId>
19+
<version>1.3.50</version>
20+
<scope>compile</scope>
21+
</dependency>
22+
<dependency>
23+
<groupId>androidx.appcompat</groupId>
24+
<artifactId>appcompat</artifactId>
25+
<version>1.1.0</version>
26+
<scope>compile</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>androidx.core</groupId>
30+
<artifactId>core-ktx</artifactId>
31+
<version>1.2.0</version>
32+
<scope>compile</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>com.github.bumptech.glide</groupId>
36+
<artifactId>glide</artifactId>
37+
<version>4.11.0</version>
38+
<scope>compile</scope>
39+
<exclusions>
40+
<exclusion>
41+
<artifactId>*</artifactId>
42+
<groupId>com.android.support</groupId>
43+
</exclusion>
44+
</exclusions>
45+
</dependency>
46+
<dependency>
47+
<groupId>com.android.support</groupId>
48+
<artifactId>support-fragment</artifactId>
49+
<scope>compile</scope>
50+
</dependency>
51+
</dependencies>
52+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b70e309f34d69f25dbd7018558cdd4bf
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fa37e1f6b4c46a5e413b01faad5cf985cbb74e31
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<metadata>
3+
<groupId>jp.co.link_u.library.glideavif</groupId>
4+
<artifactId>glideavif</artifactId>
5+
<versioning>
6+
<release>0.5.0</release>
7+
<versions>
8+
<version>0.5.0</version>
9+
</versions>
10+
<lastUpdated>20200529082004</lastUpdated>
11+
</versioning>
12+
</metadata>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
06488001ddcc61f24680929e9c69ebf7
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
11522a919b5519c8175b9406f48e045e0fc94ac1

0 commit comments

Comments
 (0)