Skip to content

Commit 63d2f36

Browse files
committed
chore(release): v0.0.1
1 parent ec159eb commit 63d2f36

File tree

4 files changed

+44
-7
lines changed

4 files changed

+44
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ add dependency
1010
<dependency>
1111
<groupId>io.github.powerbotkit</groupId>
1212
<artifactId>botbuilder-spring-boot-starter</artifactId>
13-
<version>0.0.0</version>
13+
<version>0.0.1</version>
1414
</dependency>
1515
```
1616

botbuilder-spring-boot-autoconfig/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
<parent>
44
<artifactId>botbuilder-spring-boot</artifactId>
55
<groupId>io.github.powerbotkit</groupId>
6-
<version>0.0.0</version>
6+
<version>0.0.1</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
9-
9+
<name>botbuilder-spring-boot-autoconfig</name>
10+
<description>a simple starter for spring boot and bot framework</description>
11+
<url>https://github.com/PowerBotKit/botbuilder-spring-boot</url>
1012
<artifactId>botbuilder-spring-boot-autoconfig</artifactId>
1113

1214
<properties>
15+
<module.name>botbuilder-spring-boot-autoconfig</module.name>
1316
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1417
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1518
<java.version>1.8</java.version>

botbuilder-spring-boot-starter/pom.xml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
<parent>
44
<artifactId>botbuilder-spring-boot</artifactId>
55
<groupId>io.github.powerbotkit</groupId>
6-
<version>0.0.0</version>
6+
<version>0.0.1</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
9-
9+
<name>botbuilder-spring-boot-starter</name>
10+
<description>a simple starter for spring boot and bot framework</description>
11+
<url>https://github.com/PowerBotKit/botbuilder-spring-boot</url>
1012
<artifactId>botbuilder-spring-boot-starter</artifactId>
1113

1214
<properties>
15+
<module.name>botbuilder-spring-boot-starter</module.name>
1316
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1417
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1518
<java.version>1.8</java.version>
@@ -48,4 +51,11 @@
4851
</dependencies>
4952
</dependencyManagement>
5053

54+
<repositories>
55+
<repository>
56+
<id>MyGet</id>
57+
<url>${repo.url}</url>
58+
</repository>
59+
</repositories>
60+
5161
</project>

pom.xml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
<groupId>io.github.powerbotkit</groupId>
55
<artifactId>botbuilder-spring-boot</artifactId>
66
<packaging>pom</packaging>
7-
<version>0.0.0</version>
8-
7+
<version>0.0.1</version>
8+
<name>botbuilder-spring-boot</name>
9+
<description>a simple starter for spring boot and bot framework</description>
10+
<url>https://github.com/PowerBotKit/botbuilder-spring-boot</url>
911
<modules>
1012
<module>botbuilder-spring-boot-autoconfig</module>
1113
<module>botbuilder-spring-boot-starter</module>
@@ -145,6 +147,11 @@
145147
<artifactId>maven-javadoc-plugin</artifactId>
146148
<version>2.9.1</version>
147149
<configuration>
150+
<show>private</show>
151+
<nohelp>true</nohelp>
152+
<charset>UTF-8</charset>
153+
<encoding>UTF-8</encoding>
154+
<docencoding>UTF-8</docencoding>
148155
<additionalparam>-Xdoclint:none</additionalparam>
149156
</configuration>
150157
<executions>
@@ -156,6 +163,23 @@
156163
</execution>
157164
</executions>
158165
</plugin>
166+
<plugin>
167+
<groupId>org.apache.maven.plugins</groupId>
168+
<artifactId>maven-gpg-plugin</artifactId>
169+
<version>1.5</version>
170+
<executions>
171+
<execution>
172+
<phase>verify</phase>
173+
<goals>
174+
<goal>sign</goal>
175+
</goals>
176+
<configuration>
177+
<keyname>0x7D65CFC9</keyname>
178+
<passphraseServerId>0x7D65CFC9</passphraseServerId>
179+
</configuration>
180+
</execution>
181+
</executions>
182+
</plugin>
159183
</plugins>
160184
</build>
161185

0 commit comments

Comments
 (0)