Skip to content

Commit

Permalink
Merge pull request #2 from vjsantojaca/feature/update_project
Browse files Browse the repository at this point in the history
Update project
  • Loading branch information
vjsantojaca authored Oct 17, 2023
2 parents 16b8d21 + 3e7d593 commit c17065e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 72 deletions.
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

26 changes: 7 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
embedded-redis
embedded-redis 🚀
==============

Redis embedded server for Java integration testing
Expand All @@ -9,25 +9,9 @@ Maven dependency
Maven Central:
```xml
<dependency>
<groupId>com.github.kstyrc</groupId>
<groupId>com.github.vjsantojaca</groupId>
<artifactId>embedded-redis</artifactId>
<version>0.6</version>
</dependency>
```

Previous releases (before 0.6):
```xml
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>

...

<dependency>
<groupId>redis.embedded</groupId>
<artifactId>embedded-redis</artifactId>
<version>0.5</version>
<version>0.7</version>
</dependency>
```

Expand Down Expand Up @@ -177,6 +161,10 @@ Contributors
Changelog
==============

### 0.7
* It is possible to use in MacOS 14.0
* Update to JDK 7

### 0.6
* Support JDK 6 +

Expand Down
27 changes: 0 additions & 27 deletions appveyor.yml

This file was deleted.

34 changes: 14 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<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/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>com.github.kstyrc</groupId>
<groupId>com.github.vjsantojaca</groupId>
<artifactId>embedded-redis</artifactId>
<packaging>jar</packaging>
<version>0.7-SNAPSHOT</version>
<name>embedded-redis</name>
<description>Redis embedded server for Java integration testing</description>
<url>https://github.com/kstyrc/embedded-redis</url>
<url>https://github.com/vjsantojaca/embedded-redis</url>

<licenses>
<license>
Expand All @@ -18,16 +18,16 @@
</licenses>

<scm>
<url>https://github.com/kstyrc/embedded-redis</url>
<connection>scm:git:https://github.com/kstyrc/embedded-redis.git</connection>
<developerConnection>scm:git:https://github.com/kstyrc/embedded-redis.git</developerConnection>
<url>https://github.com/vjsantojaca/embedded-redis</url>
<connection>scm:git:https://github.com/vjsantojaca/embedded-redis.git</connection>
<developerConnection>scm:git:https://github.com/vjsantojaca/embedded-redis.git</developerConnection>
<tag>embedded-redis-0.5</tag>
</scm>

<developers>
<developer>
<name>Krzysztof Styrc</name>
<email>kstyrc@gmail.com</email>
<name>Víctor Santoja</name>
<email>victorsantoja@gmail.com</email>
</developer>
</developers>

Expand All @@ -50,7 +50,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
<version>32.0.1-jre</version>
</dependency>

<dependency>
Expand All @@ -74,8 +74,8 @@
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.8.5</version>
<artifactId>mockito-core</artifactId>
<version>2.23.4</version>
<scope>test</scope>
</dependency>

Expand All @@ -97,17 +97,15 @@

<build>
<plugins>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<compilerVersion>1.6</compilerVersion>
<source>1.6</source>
<target>1.6</target>
<compilerVersion>1.7</compilerVersion>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand All @@ -128,7 +126,6 @@
<id>release</id>
<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down Expand Up @@ -171,11 +168,8 @@
</execution>
</executions>
</plugin>

</plugins>
</build>
</profile>

</profiles>

</project>
</project>

0 comments on commit c17065e

Please sign in to comment.