Skip to content

Commit

Permalink
Merge pull request #184 from alexjoybc/release/v0.1.3
Browse files Browse the repository at this point in the history
Release 1.3.0
  • Loading branch information
TayGov authored May 21, 2020
2 parents cb85660 + 22ffcf1 commit 5219331
Show file tree
Hide file tree
Showing 9 changed files with 76 additions and 12 deletions.
24 changes: 24 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Description

This PR includes the following proposed change(s):

- {List all the changes, if possible add the jira ticket #}

## Type of change

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Refactoring / Documentation

if your change is a breaking change, please add `breaking change` label to this PR

## How Has This Been Tested?

Please describe the tests that you ran to verify your changes.

## Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have made corresponding changes to the documentation
- [ ] New and existing unit tests pass locally with my changes
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/release_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Description

This Pull Request is for release **Version Vx.x.x**

## link to the JIRA Request item

- put the link here to the jira release.

## Release Notes

### Enhancement

- List all enhancement here.

### Fix

- List all fixes here.
23 changes: 23 additions & 0 deletions .github/workflows/maven-test-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Maven Test

on: [pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B test --file pom.xml
2 changes: 1 addition & 1 deletion jrcc-access-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-document-api</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>

<parent>
<groupId>org.springframework.boot</groupId>
Expand Down
6 changes: 3 additions & 3 deletions jrcc-access-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-access-spring-boot-autoconfigure</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<name>jrcc-access-spring-boot-autoconfigure</name>
<description>Demo project for Spring Boot</description>

Expand Down Expand Up @@ -98,12 +98,12 @@
<dependency>
<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-document-access-libs</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-document-api</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</dependency>
</dependencies>
<build>
Expand Down
4 changes: 2 additions & 2 deletions jrcc-access-spring-boot-sample-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-access-spring-boot-sample-app</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<name>jrcc-access-spring-boot-sample-app</name>
<description>Demo project for Spring Boot</description>

Expand All @@ -37,7 +37,7 @@
<dependency>
<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-access-spring-boot-starter</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</dependency>

</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions jrcc-access-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-access-spring-boot-starter</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<name>jrcc-access-spring-boot-starter</name>
<description>Demo project for Spring Boot</description>

Expand All @@ -37,12 +37,12 @@
<dependency>
<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-access-spring-boot-autoconfigure</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-document-access-libs</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions jrcc-document-access-libs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<parent>
<groupId>ca.bc.gov.open</groupId>
<artifactId>document-access</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>


<groupId>ca.bc.gov.open</groupId>
<artifactId>jrcc-document-access-libs</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<packaging>jar</packaging>

<name>jrcc-document-access-libs</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ca.bc.gov.open</groupId>
<artifactId>document-access</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>

<name>document-access</name>
<packaging>pom</packaging>
Expand Down

0 comments on commit 5219331

Please sign in to comment.