Skip to content

Commit

Permalink
Modernize dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kgibm committed Apr 9, 2020
1 parent c536e3a commit 42fe3c6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ deploy:
provider: releases
api_key:
secure: BJCTquPd7dm8nC35O9F1/NOlcv55+fmRci72+y0bxKQnndAbr1ms+QG1ob+IHIBm8MKJSy1jeaTKI9+DN7dkGtHR5NmwhmuLDA2GgLe6gq4x93tvfNjN6K8/Zc8z1Gf8joDaZoWbdjVrbKFLzzxDPfVjwwC7ZsdxqrXssKm9G4AjcLdLJDFx+y1pdDdVj1dfbWGfkMt9W5Y9NhUmbcEYO42MdTjEdM/ScxIht56k2GMa7cG//X+SzeKAkz3njXdl2ZUugkqFeFB0F+cQeuahmfwJR6xj0kM5+9obIXLgINZZ2Ww0Xqq/bpEibMdRi4XzTa+aRwWmvKLYHYoxutOLyuELhLYC/fAGadJzzirI0M8pQT2OieLsSSafKyuGKwIURiNE0wP7eBL47e7IBzc4DHNr8bMq61BMWQMYEAnb6iRLAvzqyVxMYk4nybSYmPuKVpCkCFvIHR0bazfAbAvNYvSEqUEpVk4nP9WYLvz25XVShiiSLrwrxDp28eNXqpy+gFUbu9xjVVe7uKopQOvSbv5pM6zkgdsFgViIaohqFDacCeYdDuY61UmSlwR8/mDQd5bKgE9qdKGSCXxPPX/YzOUbNNt0rPaWdKXbOWYdmZPYt5K8hsgGTSlpDeWJksCmeU7pML2lPfFQnynSmbjWSXH+lnYD6hKDOyojlYMPsRQ=
file: target/request-metrics-analyzer-next-0.0.1-jar-with-dependencies.jar
file: target/request-metrics-analyzer-next-1.0.20200409-jar-with-dependencies.jar
skip_cleanup: true
overwrite: true
name: request-metrics-analyzer-next-0.0.1
name: request-metrics-analyzer-next-1.0.20200409
on:
tags: true
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ Run `de.ibm.issw.requestmetrics.Starter`

### Importing the project into eclipse

* Open Eclipse and select "File" > "Import"
* In the wizard, select "Maven" > "Existing Maven Projects" and click next
* Select the root directory (your git-checkout location)
* You should see the maven POM and be able to import it
1. `mvn eclipse:eclipse`
1. Eclipse > File > Import > Existing Projects into Workspace > Choose this folder

### Create a new release

Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.ibm.issw.requestmetrics</groupId>
<artifactId>request-metrics-analyzer-next</artifactId>
<version>0.0.1</version>
<version>1.0.20200409</version>
<name>Request Metrics Analyzer Next</name>

<properties>
Expand All @@ -31,7 +31,7 @@
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.0.19</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>net.flib</groupId>
Expand All @@ -41,12 +41,12 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.3</version>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
<version>3.10</version>
</dependency>
</dependencies>

Expand All @@ -64,10 +64,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<version>3.8.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -100,7 +100,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.0.3</version>
<version>3.1.1</version>
<reportSets>
<reportSet>
<reports>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
import org.jfree.chart.JFreeChart;
import org.jfree.chart.plot.DrawingSupplier;
import org.jfree.chart.plot.PiePlot;
import org.jfree.chart.util.SortOrder;
import org.jfree.data.general.DefaultPieDataset;
import org.jfree.util.SortOrder;

import de.ibm.issw.requestmetrics.gui.comparator.TotalTimeComparator;
import de.ibm.issw.requestmetrics.model.RMRecord;
Expand Down

0 comments on commit 42fe3c6

Please sign in to comment.