Skip to content

Commit 3b97e1e

Browse files
authored
Merge pull request #249 from xdev-software/develop
Release
2 parents 56a6082 + 471649c commit 3b97e1e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+60
-2714
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
8787
- name: Create Release
8888
id: create-release
89-
uses: shogo82148/actions-create-release@e5f206451d4ace2da9916d01f1aef279997f8659 # v1
89+
uses: shogo82148/actions-create-release@4661dc54f7b4b564074e9fbf73884d960de569a3 # v1
9090
with:
9191
tag_name: v${{ steps.version.outputs.release }}
9292
release_name: v${{ steps.version.outputs.release }}

.gitignore

Lines changed: 9 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,37 @@
11
# Maven
22
target/
3-
pom.xml.tag
4-
pom.xml.releaseBackup
5-
pom.xml.versionsBackup
6-
pom.xml.next
7-
release.properties
83
dependency-reduced-pom.xml
9-
buildNumber.properties
10-
.mvn/timing.properties
11-
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
4+
5+
# Maven Wrapper
126
.mvn/wrapper/maven-wrapper.jar
137

8+
# Maven Flatten Plugin
9+
.flattened-pom.xml
1410

1511
# Compiled class file
1612
*.class
1713

1814
# Log file
1915
*.log
2016

21-
# BlueJ files
22-
*.ctxt
23-
24-
# Mobile Tools for Java (J2ME)
25-
.mtj.tmp/
26-
2717
# Package/Binary Files don't belong into a git repo
2818
*.jar
2919
*.war
30-
*.nar
3120
*.ear
3221
*.zip
3322
*.tar.gz
34-
*.rar
3523
*.dll
3624
*.exe
3725
*.bin
3826

3927
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
4028
hs_err_pid*
4129

42-
# JRebel
43-
**/resources/rebel.xml
44-
**/resources/rebel-remote.xml
45-
46-
# eclispe stuff for root
47-
/.settings/
48-
/.classpath
49-
/.project
50-
51-
52-
# eclispe stuff for modules
53-
/*/.metadata/
54-
/*/.apt_generated_tests/
55-
/*/.settings/
56-
/*/.classpath
57-
/*/.project
58-
/*/RemoteSystemsTempFiles/
59-
60-
#custom
61-
.flattened-pom.xml
62-
.tern-project
30+
# Eclipse
31+
.metadata
32+
.settings
33+
.classpath
34+
.project
6335

6436
# == IntelliJ ==
6537
*.iml

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.19
2+
* Removed unused resources from ``core``
3+
* Updated dependencies
4+
15
# 1.0.18
26
* Updated dependencies
37
* Fix ``subString`` matching not working as expected #231

client/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
<plugin>
156156
<groupId>org.codehaus.mojo</groupId>
157157
<artifactId>flatten-maven-plugin</artifactId>
158-
<version>1.7.0</version>
158+
<version>1.7.1</version>
159159
<configuration>
160160
<flattenMode>ossrh</flattenMode>
161161
</configuration>
@@ -195,7 +195,7 @@
195195
<plugin>
196196
<groupId>org.sonatype.central</groupId>
197197
<artifactId>central-publishing-maven-plugin</artifactId>
198-
<version>0.7.0</version>
198+
<version>0.8.0</version>
199199
<extensions>true</extensions>
200200
<configuration>
201201
<publishingServerId>sonatype-central-portal</publishingServerId>
@@ -217,7 +217,7 @@
217217
<dependency>
218218
<groupId>com.puppycrawl.tools</groupId>
219219
<artifactId>checkstyle</artifactId>
220-
<version>10.25.0</version>
220+
<version>10.26.0</version>
221221
</dependency>
222222
</dependencies>
223223
<configuration>
@@ -242,7 +242,7 @@
242242
<plugin>
243243
<groupId>org.apache.maven.plugins</groupId>
244244
<artifactId>maven-pmd-plugin</artifactId>
245-
<version>3.26.0</version>
245+
<version>3.27.0</version>
246246
<configuration>
247247
<includeTests>true</includeTests>
248248
<printFailingErrors>true</printFailingErrors>

core/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>com.fasterxml.jackson</groupId>
5656
<artifactId>jackson-bom</artifactId>
57-
<version>2.19.0</version>
57+
<version>2.19.1</version>
5858
<type>pom</type>
5959
<scope>import</scope>
6060
</dependency>
@@ -213,7 +213,7 @@
213213
<plugin>
214214
<groupId>org.codehaus.mojo</groupId>
215215
<artifactId>flatten-maven-plugin</artifactId>
216-
<version>1.7.0</version>
216+
<version>1.7.1</version>
217217
<configuration>
218218
<flattenMode>ossrh</flattenMode>
219219
</configuration>
@@ -253,7 +253,7 @@
253253
<plugin>
254254
<groupId>org.sonatype.central</groupId>
255255
<artifactId>central-publishing-maven-plugin</artifactId>
256-
<version>0.7.0</version>
256+
<version>0.8.0</version>
257257
<extensions>true</extensions>
258258
<configuration>
259259
<publishingServerId>sonatype-central-portal</publishingServerId>
@@ -275,7 +275,7 @@
275275
<dependency>
276276
<groupId>com.puppycrawl.tools</groupId>
277277
<artifactId>checkstyle</artifactId>
278-
<version>10.25.0</version>
278+
<version>10.26.0</version>
279279
</dependency>
280280
</dependencies>
281281
<configuration>
@@ -300,7 +300,7 @@
300300
<plugin>
301301
<groupId>org.apache.maven.plugins</groupId>
302302
<artifactId>maven-pmd-plugin</artifactId>
303-
<version>3.26.0</version>
303+
<version>3.27.0</version>
304304
<configuration>
305305
<includeTests>true</includeTests>
306306
<printFailingErrors>true</printFailingErrors>

core/src/main/resources/software/xdev/mockserver/authentication/jwk.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)