Skip to content

Commit 1b21abc

Browse files
Updated dependencies
1 parent 4dc6d26 commit 1b21abc

File tree

2 files changed

+13
-30
lines changed

2 files changed

+13
-30
lines changed

README.md

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[![License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/mauriciotogneri/java-utils/blob/master/LICENSE.md)
2-
[![Download](https://api.bintray.com/packages/mauriciotogneri/maven/javautils/images/download.svg)](https://bintray.com/mauriciotogneri/maven/javautils/_latestVersion)
32

43
# Java Utils
54
A collection of Java utility classes.
@@ -11,27 +10,18 @@ Add the following code to your **pom.xml**:
1110
```xml
1211
<repositories>
1312
<repository>
14-
<id>jcenter</id>
15-
<url>https://jcenter.bintray.com</url>
13+
<id>jitpack.io</id>
14+
<url>https://jitpack.io</url>
1615
</repository>
1716
</repositories>
1817
```
1918

20-
and the dependency:
19+
And the dependency:
2120

2221
```xml
2322
<dependency>
2423
<groupId>com.mauriciotogneri</groupId>
2524
<artifactId>javautils</artifactId>
26-
<version>3.0.0</version>
25+
<version>3.4.0</version>
2726
</dependency>
28-
```
29-
30-
or if you use Gradle:
31-
32-
```groovy
33-
dependencies
34-
{
35-
compile 'com.mauriciotogneri:javautils:3.3.0'
36-
}
3727
```

pom.xml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<modelVersion>4.0.0</modelVersion>
88
<groupId>com.mauriciotogneri</groupId>
99
<artifactId>javautils</artifactId>
10-
<version>3.3.0</version>
10+
<version>3.4.0</version>
1111
<name>Java Utils</name>
1212
<packaging>jar</packaging>
1313
<url>https://github.com/mauriciotogneri/java-utils</url>
@@ -24,7 +24,7 @@
2424
<plugin>
2525
<groupId>org.apache.maven.plugins</groupId>
2626
<artifactId>maven-compiler-plugin</artifactId>
27-
<version>3.8.0</version>
27+
<version>3.8.1</version>
2828
<configuration>
2929
<source>1.7</source>
3030
<target>1.7</target>
@@ -33,12 +33,12 @@
3333
<plugin>
3434
<groupId>org.apache.maven.plugins</groupId>
3535
<artifactId>maven-jar-plugin</artifactId>
36-
<version>3.1.1</version>
36+
<version>3.2.0</version>
3737
</plugin>
3838
<plugin>
3939
<groupId>org.apache.maven.plugins</groupId>
4040
<artifactId>maven-source-plugin</artifactId>
41-
<version>3.0.1</version>
41+
<version>3.2.1</version>
4242
<executions>
4343
<execution>
4444
<id>attach-sources</id>
@@ -53,35 +53,28 @@
5353

5454
<properties>
5555
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
56-
<maven.compiler.source>1.7</maven.compiler.source>
57-
<maven.compiler.target>1.7</maven.compiler.target>
56+
<maven.compiler.source>1.8</maven.compiler.source>
57+
<maven.compiler.target>1.8</maven.compiler.target>
5858
</properties>
5959

60-
<distributionManagement>
61-
<repository>
62-
<id>bintray</id>
63-
<url>https://api.bintray.com/maven/mauriciotogneri/maven/javautils/;publish=1</url>
64-
</repository>
65-
</distributionManagement>
66-
6760
<dependencies>
6861

6962
<dependency>
7063
<groupId>com.google.code.gson</groupId>
7164
<artifactId>gson</artifactId>
72-
<version>2.8.5</version>
65+
<version>2.8.6</version>
7366
</dependency>
7467

7568
<dependency>
7669
<groupId>org.greenrobot</groupId>
7770
<artifactId>eventbus</artifactId>
78-
<version>3.1.1</version>
71+
<version>3.2.0</version>
7972
</dependency>
8073

8174
<dependency>
8275
<groupId>joda-time</groupId>
8376
<artifactId>joda-time</artifactId>
84-
<version>2.10.1</version>
77+
<version>2.10.10</version>
8578
</dependency>
8679

8780
</dependencies>

0 commit comments

Comments
 (0)