Skip to content

Commit 24baf65

Browse files
authored
Merge pull request #122 from xdev-software/develop
Release
2 parents 7474b36 + 724201c commit 24baf65

File tree

12 files changed

+75
-41
lines changed

12 files changed

+75
-41
lines changed
File renamed without changes.

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
# Force MVN Wrapper Linux files LF
88
mvnw text eol=lf
9-
.mvn/wrapper/maven-wrapper.properties text eol=lf
9+
maven-wrapper.properties text eol=lf

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ body:
3333
validations:
3434
required: true
3535

36+
- type: textarea
37+
id: description
38+
attributes:
39+
label: Description of the problem
40+
description: |
41+
Describe as exactly as possible what is not working.
42+
validations:
43+
required: true
44+
3645
- type: textarea
3746
id: steps-to-reproduce
3847
attributes:
@@ -47,20 +56,6 @@ body:
4756
validations:
4857
required: true
4958

50-
- type: textarea
51-
id: expected-behavior
52-
attributes:
53-
label: Expected behavior
54-
description: |
55-
Tell us what you expect to happen.
56-
57-
- type: textarea
58-
id: actual-behavior
59-
attributes:
60-
label: Actual behavior
61-
description: |
62-
Tell us what happens with the steps given above.
63-
6459
- type: textarea
6560
id: additional-information
6661
attributes:

.github/workflows/release.yml

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

.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.2.0
2+
* Provide an option to always transfer specific paths
3+
* Always transfer Dockerfile - as it is required for building - by default
4+
15
# 1.1.1
26
* Migrated deployment to _Sonatype Maven Central Portal_ [#155](https://github.com/xdev-software/standard-maven-template/issues/155)
37

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev</groupId>
88
<artifactId>testcontainers-advanced-imagebuilder-root</artifactId>
9-
<version>1.1.2-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<organization>
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>com.puppycrawl.tools</groupId>
4848
<artifactId>checkstyle</artifactId>
49-
<version>10.23.1</version>
49+
<version>10.25.0</version>
5050
</dependency>
5151
</dependencies>
5252
<configuration>
@@ -76,19 +76,19 @@
7676
<includeTests>true</includeTests>
7777
<printFailingErrors>true</printFailingErrors>
7878
<rulesets>
79-
<ruleset>.config/pmd/ruleset.xml</ruleset>
79+
<ruleset>.config/pmd/java/ruleset.xml</ruleset>
8080
</rulesets>
8181
</configuration>
8282
<dependencies>
8383
<dependency>
8484
<groupId>net.sourceforge.pmd</groupId>
8585
<artifactId>pmd-core</artifactId>
86-
<version>7.13.0</version>
86+
<version>7.14.0</version>
8787
</dependency>
8888
<dependency>
8989
<groupId>net.sourceforge.pmd</groupId>
9090
<artifactId>pmd-java</artifactId>
91-
<version>7.13.0</version>
91+
<version>7.14.0</version>
9292
</dependency>
9393
</dependencies>
9494
</plugin>

testcontainers-advanced-imagebuilder-demo/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>software.xdev</groupId>
99
<artifactId>testcontainers-advanced-imagebuilder-root</artifactId>
10-
<version>1.1.2-SNAPSHOT</version>
10+
<version>1.2.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>testcontainers-advanced-imagebuilder-demo</artifactId>
14-
<version>1.1.2-SNAPSHOT</version>
14+
<version>1.2.0-SNAPSHOT</version>
1515
<packaging>jar</packaging>
1616

1717
<organization>

testcontainers-advanced-imagebuilder-dummy-app/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev</groupId>
88
<artifactId>testcontainers-advanced-imagebuilder-dummy-app</artifactId>
9-
<version>1.1.2-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<organization>
@@ -82,7 +82,7 @@
8282
<dependency>
8383
<groupId>com.puppycrawl.tools</groupId>
8484
<artifactId>checkstyle</artifactId>
85-
<version>10.23.1</version>
85+
<version>10.25.0</version>
8686
</dependency>
8787
</dependencies>
8888
<configuration>

testcontainers-advanced-imagebuilder/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev</groupId>
88
<artifactId>testcontainers-advanced-imagebuilder</artifactId>
9-
<version>1.1.2-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>testcontainers-advanced-imagebuilder</name>
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>org.testcontainers</groupId>
5858
<artifactId>testcontainers</artifactId>
59-
<version>1.21.0</version>
59+
<version>1.21.1</version>
6060
<exclusions>
6161
<!-- No JUnit 4 -->
6262
<exclusion>
@@ -68,7 +68,7 @@
6868
<dependency>
6969
<groupId>software.xdev</groupId>
7070
<artifactId>testcontainers-junit4-mock</artifactId>
71-
<version>1.0.1</version>
71+
<version>1.0.2</version>
7272
</dependency>
7373
<!-- Testcontainers is using outdated v1 -->
7474
<dependency>
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>org.junit.jupiter</groupId>
8383
<artifactId>junit-jupiter</artifactId>
84-
<version>5.12.2</version>
84+
<version>5.13.1</version>
8585
<scope>test</scope>
8686
</dependency>
8787
<dependency>
@@ -267,7 +267,7 @@
267267
<dependency>
268268
<groupId>com.puppycrawl.tools</groupId>
269269
<artifactId>checkstyle</artifactId>
270-
<version>10.23.1</version>
270+
<version>10.25.0</version>
271271
</dependency>
272272
</dependencies>
273273
<configuration>
@@ -297,19 +297,19 @@
297297
<includeTests>true</includeTests>
298298
<printFailingErrors>true</printFailingErrors>
299299
<rulesets>
300-
<ruleset>../.config/pmd/ruleset.xml</ruleset>
300+
<ruleset>../.config/pmd/java/ruleset.xml</ruleset>
301301
</rulesets>
302302
</configuration>
303303
<dependencies>
304304
<dependency>
305305
<groupId>net.sourceforge.pmd</groupId>
306306
<artifactId>pmd-core</artifactId>
307-
<version>7.13.0</version>
307+
<version>7.14.0</version>
308308
</dependency>
309309
<dependency>
310310
<groupId>net.sourceforge.pmd</groupId>
311311
<artifactId>pmd-java</artifactId>
312-
<version>7.13.0</version>
312+
<version>7.14.0</version>
313313
</dependency>
314314
</dependencies>
315315
</plugin>

0 commit comments

Comments
 (0)