Commit e87ff52 lixiang
committed
1 parent a37e38f commit e87ff52 Copy full SHA for e87ff52
File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 8
8
<dependency >
9
9
<groupId >red.lixiang.tools</groupId >
10
10
<artifactId >sunshine-starter</artifactId >
11
- <version >0.0.1 </version >
11
+ <version >0.0.2 </version >
12
12
</dependency >
13
13
```
14
14
15
15
gradle:
16
16
``` groovy
17
- implementation 'red.lixiang.tools:sunshine-starter:0.0.1 '
17
+ implementation 'red.lixiang.tools:sunshine-starter:0.0.2 '
18
18
```
19
19
如只需要jdk本身的工具,可只引用 ` sunshine-base `
20
20
如只需一些第三方的某个工具只需引用 ` sunshine-common `
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
8
8
9
9
allprojects {
10
10
group = ' red.lixiang.tools'
11
- version = ' 0.0.2 -SNAPSHOT'
11
+ version = ' 0.0.3 -SNAPSHOT'
12
12
sourceCompatibility = ' 1.8'
13
13
targetCompatibility = ' 1.8'
14
14
repositories {
Original file line number Diff line number Diff line change @@ -61,6 +61,14 @@ publishing {
61
61
password project. findProperty(" haoyao.password" )
62
62
}
63
63
}
64
+ maven {
65
+ name ' sonatypeRepository'
66
+ url ' https://oss.sonatype.org/service/local/staging/deploy/maven2/'
67
+ credentials {
68
+ username = project. findProperty(" sonatype.username" )
69
+ password = project. findProperty(" sonatype.password" )
70
+ }
71
+ }
64
72
maven {
65
73
name = ' sonatypeSnapshotRepository'
66
74
url = ' https://oss.sonatype.org/content/repositories/snapshots/'
You can’t perform that action at this time.
0 commit comments