Skip to content

Commit e87ff52

Browse files
author
lixiang
committed
发布了0.0.2版本
1 parent a37e38f commit e87ff52

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ maven:
88
<dependency>
99
<groupId>red.lixiang.tools</groupId>
1010
<artifactId>sunshine-starter</artifactId>
11-
<version>0.0.1</version>
11+
<version>0.0.2</version>
1212
</dependency>
1313
```
1414

1515
gradle:
1616
```groovy
17-
implementation 'red.lixiang.tools:sunshine-starter:0.0.1'
17+
implementation 'red.lixiang.tools:sunshine-starter:0.0.2'
1818
```
1919
如只需要jdk本身的工具,可只引用 `sunshine-base`
2020
如只需一些第三方的某个工具只需引用 `sunshine-common`

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88

99
allprojects {
1010
group = 'red.lixiang.tools'
11-
version = '0.0.2-SNAPSHOT'
11+
version = '0.0.3-SNAPSHOT'
1212
sourceCompatibility = '1.8'
1313
targetCompatibility = '1.8'
1414
repositories {

sunshine-common/build.gradle

+8
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,14 @@ publishing {
6161
password project.findProperty("haoyao.password")
6262
}
6363
}
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+
}
6472
maven {
6573
name = 'sonatypeSnapshotRepository'
6674
url = 'https://oss.sonatype.org/content/repositories/snapshots/'

0 commit comments

Comments
 (0)