Skip to content

Commit 804f024

Browse files
committedMar 21, 2023
enable auto-update
1 parent 8df025c commit 804f024

File tree

4 files changed

+48
-1
lines changed

4 files changed

+48
-1
lines changed
 

‎.circleci/config.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: 2.1
2+
3+
jobs:
4+
analyze:
5+
docker:
6+
- image: 'cimg/openjdk:11.0'
7+
steps:
8+
- checkout
9+
- run:
10+
name: Analyze on SonarCloud
11+
command: mvn verify sonar:sonar
12+
13+
executors:
14+
jdk:
15+
docker:
16+
- image: 'cimg/openjdk:11.0'
17+
18+
orbs:
19+
maven: circleci/maven@1.4.1
20+
21+
workflows:
22+
maven_test:
23+
jobs:
24+
- maven/test:
25+
executor: jdk
26+
- analyze:
27+
context: SonarCloud

‎pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@
1414
<artifactId>sample-spring-blockchain</artifactId>
1515
<version>1.0-SNAPSHOT</version>
1616

17+
<properties>
18+
<java.version>11</java.version>
19+
<sonar.projectKey>piomin_sample-spring-blockchain</sonar.projectKey>
20+
<sonar.organization>piomin</sonar.organization>
21+
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
22+
</properties>
23+
1724
<dependencies>
1825
<dependency>
1926
<groupId>org.web3j</groupId>

‎renovate.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:base",":dependencyDashboard"
5+
],
6+
"packageRules": [
7+
{
8+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
9+
"automerge": true
10+
}
11+
],
12+
"prCreation": "not-pending"
13+
}

‎src/main/resources/application.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ spring:
44
server:
55
port: ${PORT:8090}
66
web3j:
7-
client-address: http://192.168.99.100:8545
7+
client-address: http://localhost:8545

0 commit comments

Comments
 (0)
Please sign in to comment.