Skip to content

Commit

Permalink
Merge pull request #65 from assimbly/develop
Browse files Browse the repository at this point in the history
Release 3.8.0
  • Loading branch information
skin27 committed Nov 30, 2022
2 parents 4d82d3b + bf3209f commit eadf2cb
Show file tree
Hide file tree
Showing 12 changed files with 146 additions and 3 deletions.
33 changes: 33 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
labels:
- 'chore'
- 'maintenance'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
#version-resolver:
# major:
# labels:
# - 'major'
# minor:
# labels:
# - 'minor'
# patch:
# labels:
# - 'patch'
# default: patch
template: |
## Changes
$CHANGES
24 changes: 24 additions & 0 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish package to GitHub Packages
on:
release:
types: [created, updated]
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Publish package
run: |
sh ./bin/mac/deploy.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25 changes: 25 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release Drafter

on:
push:
branches:
- master
- develop
pull_request:
types: [opened, reopened, synchronize]

permissions:
contents: read

jobs:
update_release_draft:
permissions:
contents: write
pull-requests: write

runs-on: ubuntu-latest

steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
</natures>
<filteredResources>
<filter>
<id>1649350859958</id>
<id>1667865566053</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
Expand Down
1 change: 0 additions & 1 deletion .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
eclipse.preferences.version=1
encoding//src/test/java=UTF-8
encoding/<project>=UTF-8
14 changes: 14 additions & 0 deletions bin/mac/deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )

cd "$parent_path" &

mvn -f ../../broker/pom.xml clean deploy &

mvn -f ../../brokerRest/pom.xml clean deploy &

mvn -f ../../dil/pom.xml clean deploy &

mvn -f ../../integration/pom.xml clean deploy &

mvn -f ../../integrationRest/pom.xml clean deploy
8 changes: 8 additions & 0 deletions broker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@
<maven-versions-rules>file:///${project.parent.basedir}/rules.xml</maven-versions-rules>
</properties>

<distributionManagement>
<repository>
<id>github</id>
<name>Temporary Staging Repository</name>
<url>https://maven.pkg.github.com/assimbly/runtime</url>
</repository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.assimbly</groupId>
Expand Down
8 changes: 8 additions & 0 deletions brokerRest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@
<maven-versions-rules>file:///${project.parent.basedir}/rules.xml</maven-versions-rules>
</properties>

<distributionManagement>
<repository>
<id>github</id>
<name>Temporary Staging Repository</name>
<url>https://maven.pkg.github.com/assimbly/runtime</url>
</repository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.assimbly</groupId>
Expand Down
8 changes: 8 additions & 0 deletions dil/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@
<maven-versions-rules>file:///${project.parent.basedir}/rules.xml</maven-versions-rules>
</properties>

<distributionManagement>
<repository>
<id>github</id>
<name>Temporary Staging Repository</name>
<url>https://maven.pkg.github.com/assimbly/runtime</url>
</repository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.assimbly</groupId>
Expand Down
8 changes: 8 additions & 0 deletions integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@
<maven-versions-rules>file:///${project.parent.basedir}/rules.xml</maven-versions-rules>
</properties>

<distributionManagement>
<repository>
<id>github</id>
<name>Temporary Staging Repository</name>
<url>https://maven.pkg.github.com/assimbly/runtime</url>
</repository>
</distributionManagement>

<dependencies>

<dependency>
Expand Down
8 changes: 8 additions & 0 deletions integrationRest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@
<maven-versions-rules>file:///${project.parent.basedir}/rules.xml</maven-versions-rules>
</properties>

<distributionManagement>
<repository>
<id>github</id>
<name>Temporary Staging Repository</name>
<url>https://maven.pkg.github.com/assimbly/runtime</url>
</repository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.assimbly</groupId>
Expand Down
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@
<springdoc-openapi-ui.version>1.6.13</springdoc-openapi-ui.version>
</properties>

<distributionManagement>
<repository>
<id>github</id>
<name>Temporary Staging Repository</name>
<url>https://maven.pkg.github.com/assimbly/runtime</url>
</repository>
</distributionManagement>

<reporting>
<plugins>
<plugin>
Expand Down

0 comments on commit eadf2cb

Please sign in to comment.