Skip to content

Commit 15d36e0

Browse files
author
codeba
committed
build: maven build
1 parent 034a9b0 commit 15d36e0

File tree

5 files changed

+77
-1
lines changed

5 files changed

+77
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@
242242
<plugin>
243243
<groupId>org.sonatype.central</groupId>
244244
<artifactId>central-publishing-maven-plugin</artifactId>
245-
<version>0.6.0</version>
245+
<version>0.7.0</version>
246246
<extensions>true</extensions>
247247
<configuration>
248248
<publishingServerId>ossrh</publishingServerId>

redis-keeper-core/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,23 @@
3434
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3535
</properties>
3636

37+
<build>
38+
<plugins>
39+
<!-- Javadoc -->
40+
<plugin>
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-javadoc-plugin</artifactId>
43+
<version>2.9.1</version>
44+
<executions>
45+
<execution>
46+
<phase>package</phase>
47+
<goals>
48+
<goal>jar</goal>
49+
</goals>
50+
</execution>
51+
</executions>
52+
</plugin>
53+
</plugins>
54+
</build>
55+
3756
</project>

redis-keeper-spring-boot-starter/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,24 @@
7777
<scope>test</scope>
7878
</dependency>
7979
</dependencies>
80+
81+
<build>
82+
<plugins>
83+
<!-- Javadoc -->
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-javadoc-plugin</artifactId>
87+
<version>2.9.1</version>
88+
<executions>
89+
<execution>
90+
<phase>package</phase>
91+
<goals>
92+
<goal>jar</goal>
93+
</goals>
94+
</execution>
95+
</executions>
96+
</plugin>
97+
</plugins>
98+
</build>
99+
80100
</project>

redis-keeper-spring/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,23 @@
5858
</dependency>
5959
</dependencies>
6060

61+
<build>
62+
<plugins>
63+
<!-- Javadoc -->
64+
<plugin>
65+
<groupId>org.apache.maven.plugins</groupId>
66+
<artifactId>maven-javadoc-plugin</artifactId>
67+
<version>2.9.1</version>
68+
<executions>
69+
<execution>
70+
<phase>package</phase>
71+
<goals>
72+
<goal>jar</goal>
73+
</goals>
74+
</execution>
75+
</executions>
76+
</plugin>
77+
</plugins>
78+
</build>
79+
6180
</project>

redis-keeper-support/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,23 @@
7070

7171
</dependencies>
7272

73+
<build>
74+
<plugins>
75+
<!-- Javadoc -->
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-javadoc-plugin</artifactId>
79+
<version>2.9.1</version>
80+
<executions>
81+
<execution>
82+
<phase>package</phase>
83+
<goals>
84+
<goal>jar</goal>
85+
</goals>
86+
</execution>
87+
</executions>
88+
</plugin>
89+
</plugins>
90+
</build>
7391

7492
</project>

0 commit comments

Comments
 (0)