Skip to content

Commit d17e915

Browse files
committed
Fix capitalization in artifactId
1 parent 5941e00 commit d17e915

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ bin
88

99
build/
1010
bin/
11-
memory/
11+
memory/
12+
docs/

build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11

22
plugins {
3-
id 'java'
4-
id 'java-gradle-plugin'
3+
id 'java'
54
id 'maven-publish'
65
}
76

@@ -59,4 +58,10 @@ publishing {
5958
}
6059
}
6160
}
61+
publications {
62+
maven(MavenPublication) {
63+
artifactId = "bigarraylist"
64+
from components.java
65+
}
66+
}
6267
}

0 commit comments

Comments
 (0)