Skip to content

Commit

Permalink
updated versions of dependencies (changed log4j to reload4j)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrandes committed Mar 7, 2022
1 parent c79277f commit 6d285dd
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ KVStore is a Key-Value Store based on B+Tree for Memory & Disk (for on disk, key

API is similar to [TreeMap](http://docs.oracle.com/javase/6/docs/api/java/util/TreeMap.html).

### Current Stable Version is [1.0.1](https://search.maven.org/#search|ga|1|g%3Aorg.javastack%20a%3Akvstore)
### Current Stable Version is [1.0.2](https://search.maven.org/#search|ga|1|g%3Aorg.javastack%20a%3Akvstore)

---

Expand Down Expand Up @@ -96,7 +96,7 @@ Add the KVStore dependency to your pom.xml:
<dependency>
<groupId>org.javastack</groupId>
<artifactId>kvstore</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

---
Expand Down
38 changes: 25 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.javastack</groupId>
<artifactId>kvstore</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<description>KVStore is a simple Key-Value Store based on B+Tree (disk and memory) for Java</description>

<name>${project.groupId}:${project.artifactId}</name>
Expand All @@ -29,29 +29,33 @@
</scm>

<dependencies>
<!-- Log4J 1.2 replacement -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<type>jar</type>
<groupId>ch.qos.reload4j</groupId>
<artifactId>reload4j</artifactId>
<version>1.2.19</version>
</dependency>
</dependencies>

<properties>
<java.version>1.7</java.version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<version>3.8.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<!-- Package Classes to JAR to upload to repo -->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<version>3.2.0</version>
<configuration>
<finalName>${project.artifactId}-${project.version}</finalName>
<forceCreation>true</forceCreation>
Expand All @@ -71,13 +75,18 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>3.2.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<archive>
<manifestEntries>
<Built-By>maven</Built-By>
</manifestEntries>
</archive>
<excludeResources>true</excludeResources>
<excludes>
<exclude>**/sandbox/*</exclude>
Expand All @@ -90,7 +99,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.3</version>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -100,6 +109,7 @@
</execution>
</executions>
<configuration>
<source>${java.version}</source>
<tags>
<tag>
<name>threadSafe</name>
Expand All @@ -108,13 +118,15 @@
</tag>
</tags>
<excludePackageNames>*.sandbox.*</excludePackageNames>
<!-- FIXME: Dont Break -->
<doclint>none</doclint>
</configuration>
</plugin>
<!-- GPG Signed Components for Maven Central -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -129,7 +141,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down

0 comments on commit 6d285dd

Please sign in to comment.