Skip to content

Commit

Permalink
Merge pull request #65 from seomoz/corbin/dp-9291
Browse files Browse the repository at this point in the history
Fixing several build bugs with new Jedis Version
  • Loading branch information
CorbinGraham authored Dec 2, 2022
2 parents 113d017 + cd174e5 commit 38f7de0
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,32 @@
</repository>
</distributionManagement>

<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Central Repository</name>
<url>http://insecure.repo1.maven.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>http://insecure.repo1.maven.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

<build>
<defaultGoal>package</defaultGoal>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
set -e

# JDK 8
sudo add-apt-repository -y ppa:webupd8team/java
sudo -E add-apt-repository ppa:openjdk-r/ppa
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections
sudo apt-get update
sudo apt-get install -y oracle-java8-installer
sudo apt-get install -y openjdk-8-jdk

# Some dependencies
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/moz/qless/lua/LuaScript.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.util.SafeEncoder;
import redis.clients.jedis.util.SafeEncoder;

public class LuaScript {
private static final Logger LOGGER = LoggerFactory.getLogger(LuaScript.class);
Expand Down

0 comments on commit 38f7de0

Please sign in to comment.