Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinresol committed Oct 7, 2021
1 parent 97f373d commit 9bf2e78
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Java CI

on: [push]
on:
push:

jobs:
build:
Expand Down Expand Up @@ -48,6 +49,10 @@ jobs:
run: lix download

- name: Build with Maven
run: mvn -s settings.xml compile package deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn compile package

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: target/keycloak-webhook-event-listener-*.jar
21 changes: 13 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,6 @@
<url>https://raw.githubusercontent.com/kevinresol/haxe-maven-plugin/mvn-repo/</url>
</pluginRepository>
</pluginRepositories>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub BeeInventor Apache Maven Packages</name>
<url>https://maven.pkg.github.com/BeeInventor/keycloak-webhook-event-listener</url>
</repository>
</distributionManagement>

<dependencies>
<dependency>
Expand Down Expand Up @@ -99,6 +91,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
10 changes: 0 additions & 10 deletions settings.xml

This file was deleted.

0 comments on commit 9bf2e78

Please sign in to comment.