Skip to content

Commit

Permalink
Test Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
kgibm committed Apr 9, 2020
1 parent 49f5827 commit 80c6e75
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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/analyzer-next-0.0.1-jar-with-dependencies.jar
file: target/request-metrics-analyzer-next-0.0.1-jar-with-dependencies.jar
skip_cleanup: true
overwrite: true
name: request-metrics-analyzer-next-0.0.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Run `de.ibm.issw.requestmetrics.Starter`

1. Update `<version>X.Y.Z</version>` in pom.xml
1. Update the version in `name: request-metrics-analyzer-next-X.Y.Z` in .travis.yml
1. Update the version in `file: target/analyzer-next-X.Y.Z-jar-with-dependencies.jar` in .travis.yml
1. Update the version in `file: target/request-metrics-analyzer-next-X.Y.Z-jar-with-dependencies.jar` in .travis.yml
1. `git commit -am "Commit message"`
1. `git tag -a -m "vX.Y.Z" vX.Y.Z`
1. `git push --follow-tags`
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
<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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>de.ibm.issw.requestmetrics</groupId>
<artifactId>request-metrics-analyzer-next</artifactId>
<version>0.0.1</version>
<name>Request Metrics Analyzer Next</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<repositories>
<repository>
<id>JCalendar_Repo</id>
<url>http://igetdb.sourceforge.net/maven2-repository</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.apache.velocity</groupId>
Expand Down Expand Up @@ -39,6 +49,7 @@
<version>3.5</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -83,6 +94,7 @@
</plugin>
</plugins>
</build>

<reporting>
<plugins>
<plugin>
Expand All @@ -99,4 +111,4 @@
</plugin>
</plugins>
</reporting>
</project>
</project>

0 comments on commit 80c6e75

Please sign in to comment.