Skip to content

Commit 8917329

Browse files
committed
Rename core -> compactmap so the the jar file is not confused with other projects
1 parent f938aa3 commit 8917329

File tree

10 files changed

+10
-6
lines changed

10 files changed

+10
-6
lines changed

core/pom.xml renamed to compactmap/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>core</artifactId>
12+
<artifactId>compactmap</artifactId>
1313
<packaging>jar</packaging>
1414

15+
<name>Compact HashMap</name>
16+
1517
<dependencies>
1618
<dependency>
1719
<groupId>com.github.andrewoma.dexx</groupId>

jmh/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependencies>
2020
<dependency>
2121
<groupId>com.github.vlsi.compactmap</groupId>
22-
<artifactId>core</artifactId>
22+
<artifactId>compactmap</artifactId>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.openjdk.jmh</groupId>

jol/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@
1212
<artifactId>jol</artifactId>
1313
<packaging>jar</packaging>
1414

15+
<name>Compact HashMap layout/size tests</name>
16+
1517
<dependencies>
1618
<dependency>
1719
<groupId>com.github.vlsi.compactmap</groupId>
18-
<artifactId>core</artifactId>
20+
<artifactId>compactmap</artifactId>
1921
</dependency>
2022
<dependency>
2123
<groupId>org.openjdk.jol</groupId>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010
<version>1.3.0-SNAPSHOT</version>
1111
<modules>
12-
<module>core</module>
12+
<module>compactmap</module>
1313
<module>jol</module>
1414
<module>jmh</module>
1515
</modules>
@@ -18,7 +18,7 @@
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
</properties>
2020

21-
<name>Compact HashMap</name>
21+
<name>Compact HashMap parent</name>
2222
<description>Hash table implementation modelled after memory efficient V8's Fast Property Access</description>
2323
<licenses>
2424
<license>
@@ -56,7 +56,7 @@
5656
<dependencies>
5757
<dependency>
5858
<groupId>com.github.vlsi.compactmap</groupId>
59-
<artifactId>core</artifactId>
59+
<artifactId>compactmap</artifactId>
6060
<version>${project.version}</version>
6161
</dependency>
6262
<dependency>

0 commit comments

Comments
 (0)