Skip to content

Commit

Permalink
mavenize
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsi committed Mar 14, 2015
1 parent 82bb429 commit 16b8bb5
Show file tree
Hide file tree
Showing 21 changed files with 162 additions and 171 deletions.
14 changes: 13 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
/out/
*~
target
.idea
*.iml
settings.xml
.classpath.txt
.fullclasspath.txt

# eclipse
.project
.buildpath
.classpath
.settings
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/ant.xml

This file was deleted.

14 changes: 0 additions & 14 deletions .idea/artifacts/CompactMap_jar.xml

This file was deleted.

24 changes: 0 additions & 24 deletions .idea/compiler.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/copyright/LGPL.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/encodings.xml

This file was deleted.

62 changes: 0 additions & 62 deletions .idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/modules.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/vcs.xml

This file was deleted.

22 changes: 0 additions & 22 deletions CompactMap.iml

This file was deleted.

3 changes: 0 additions & 3 deletions META-INF/MANIFEST.MF

This file was deleted.

25 changes: 25 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<groupId>com.github.vlsi.compactmap</groupId>
<version>1.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>core</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.github.andrewoma.dexx</groupId>
<artifactId>dexx-collections</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
</dependencies>
</project>
File renamed without changes.
File renamed without changes.
29 changes: 29 additions & 0 deletions jol/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<groupId>com.github.vlsi.compactmap</groupId>
<version>1.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>jol</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.github.vlsi.compactmap</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>org.openjdk.jol</groupId>
<artifactId>jol-core</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
</dependencies>
</project>
95 changes: 95 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.vlsi.compactmap</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>1.2.0</version>
<modules>
<module>core</module>
<module>jol</module>
</modules>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<name>Compact HashMap</name>
<description>Hash table implementation modelled after memory efficient V8's Fast Property Access</description>
<licenses>
<license>
<name>LGPL 3.0 license</name>
<url>http://www.opensource.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>

<url>https://github.com/vlsi/compactmap</url>
<scm>
<url>https://github.com/vlsi/compactmap</url>
<connection>https://github.com/vlsi/compactmap.git</connection>
<developerConnection>git@github:vlsi/compactmap</developerConnection>
</scm>

<developers>
<developer>
<name>Vladimir Sitnikov</name>
<email>[email protected]</email>
</developer>
</developers>

<distributionManagement>
<snapshotRepository>
<id>sonatype-snapshot</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.vlsi.compactmap</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.andrewoma.dexx</groupId>
<artifactId>dexx-collections</artifactId>
<version>0.2</version>
</dependency>
<dependency>
<groupId>org.openjdk.jol</groupId>
<artifactId>jol-core</artifactId>
<version>0.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.7</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

0 comments on commit 16b8bb5

Please sign in to comment.