You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove support for Java 8, update dependencies, improve CI & ReadMe
* Java 8: The TravisCI build is failing due to trying to run the build in MacOS with Java 8 (not supported) * Dependencies: Updated the Junit to 5.3.2 and Gradle to 5.1.1 * CI: Modify the Bitbucket Pipeline in order to use Java 11 and split the `build` task into the `assemble` and `check` ones in order to be able to isolate which one could be failing * ReadMe: Add how to update dependencies section in order to make it easier for the end users in case of not having this repository updated to the latest versions
Copy file name to clipboardExpand all lines: README.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,22 @@
2
2
3
3
## Introduction
4
4
5
-
This is a repository intended to serve as a starting point if you want to bootstrap a project in Java 8 with JUnit 5.2 and Gradle 4.6.
5
+
This is a repository intended to serve as a starting point if you want to bootstrap a project in Java with JUnit and Gradle
6
6
7
7
## How To Start
8
8
9
-
1. Install Java 8
10
-
2. Clone this repository `git clone https://github.com/CodelyTV/java-bootstrap`.
11
-
3. Run the tests with `./gradlew test`
9
+
1. Install Java: `brew cask install java`
10
+
2. Clone this repository: `git clone https://github.com/CodelyTV/java-bootstrap`.
11
+
3. Execute some [Gradle lifecycle tasks](https://docs.gradle.org/current/userguide/java_plugin.html#lifecycle_tasks) in order to check everything is OK:
12
+
1. Create [the project JAR](https://docs.gradle.org/current/userguide/java_plugin.html#sec:jar) and other project artifacts:
`./gradlew wrapper --gradle-version=5.1.1 --distribution-type=bin` or modifying the [gradle-wrapper.properties](gradle/wrapper/gradle-wrapper.properties#L3)
0 commit comments