Skip to content

Commit d23a9f4

Browse files
authored
Merge pull request #19 from xdev-software/develop
Release
2 parents cd0485b + 48f1c75 commit d23a9f4

8 files changed

Lines changed: 17 additions & 10 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 🐞 Bug
22
description: Create a bug report for something that is broken
33
labels: [bug]
4+
type: bug
45
body:
56
- type: markdown
67
attributes:

.github/ISSUE_TEMPLATE/enhancement.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: ✨ Feature/Enhancement
22
description: Suggest a new feature or enhancement
33
labels: [enhancement]
4+
type: feature
45
body:
56
- type: markdown
67
attributes:

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,11 @@ jobs:
101101
## Installation
102102
Add the following lines to your pom:
103103
```XML
104-
<dependency>
104+
<plugin>
105105
<groupId>software.xdev</groupId>
106106
<artifactId>${{ env.PRIMARY_MAVEN_MODULE }}</artifactId>
107107
<version>${{ steps.version.outputs.release }}</version>
108-
</dependency>
108+
</plugin>
109109
```
110110
111111
publish-maven:
@@ -169,6 +169,7 @@ jobs:
169169
with:
170170
github_token: ${{ secrets.GITHUB_TOKEN }}
171171
publish_dir: ./${{ env.PRIMARY_MAVEN_MODULE }}/target/site
172+
force_orphan: true
172173

173174
after-release:
174175
runs-on: ubuntu-latest

.idea/checkstyle-idea.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.2
2+
* Added a property which allows disabling the plugin #11 @runeflobakk
3+
> enables the troller to subtly disable accidentally blasting the music in the office space while waiting for the trollees to be trolled, while avoiding being self-trolled
4+
15
# 1.0.1
26
* Updated dependencies
37

music-maven-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@
300300
<dependency>
301301
<groupId>com.puppycrawl.tools</groupId>
302302
<artifactId>checkstyle</artifactId>
303-
<version>10.21.0</version>
303+
<version>10.21.2</version>
304304
</dependency>
305305
</dependencies>
306306
<configuration>
@@ -337,12 +337,12 @@
337337
<dependency>
338338
<groupId>net.sourceforge.pmd</groupId>
339339
<artifactId>pmd-core</artifactId>
340-
<version>7.8.0</version>
340+
<version>7.10.0</version>
341341
</dependency>
342342
<dependency>
343343
<groupId>net.sourceforge.pmd</groupId>
344344
<artifactId>pmd-java</artifactId>
345-
<version>7.8.0</version>
345+
<version>7.10.0</version>
346346
</dependency>
347347
</dependencies>
348348
</plugin>

music-maven-plugin/src/main/java/software/xdev/maven/music/MusicMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class MusicMojo extends AbstractMojo
3939
{
4040
protected static final AtomicInteger THREAD_COUNTER = new AtomicInteger(0);
4141

42-
@Parameter
42+
@Parameter(property = "music.skip")
4343
protected boolean skip;
4444

4545
@Parameter

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>com.puppycrawl.tools</groupId>
4747
<artifactId>checkstyle</artifactId>
48-
<version>10.21.0</version>
48+
<version>10.21.2</version>
4949
</dependency>
5050
</dependencies>
5151
<configuration>
@@ -82,12 +82,12 @@
8282
<dependency>
8383
<groupId>net.sourceforge.pmd</groupId>
8484
<artifactId>pmd-core</artifactId>
85-
<version>7.8.0</version>
85+
<version>7.10.0</version>
8686
</dependency>
8787
<dependency>
8888
<groupId>net.sourceforge.pmd</groupId>
8989
<artifactId>pmd-java</artifactId>
90-
<version>7.8.0</version>
90+
<version>7.10.0</version>
9191
</dependency>
9292
</dependencies>
9393
</plugin>

0 commit comments

Comments
 (0)