File tree 6 files changed +132
-6
lines changed
6 files changed +132
-6
lines changed Original file line number Diff line number Diff line change 60
60
- name : Java Environment
61
61
run : env | grep '^JAVA'
62
62
- name : Publish package
63
- run : ./mvnw --batch-mode deploy --file pom.xml -DskipTests=true -Pmaven.central.release
63
+ run : ./mvnw --batch-mode deploy --file pom.xml -P '!it-module,!agent-testweb-module' - DskipTests=true -Pmaven.central.release
64
64
env :
65
65
MAVEN_USERNAME : ${{ secrets.OSSRH_USERNAME }}
66
66
MAVEN_PASSWORD : ${{ secrets.OSSRH_TOKEN }}
Original file line number Diff line number Diff line change 141
141
<module >spring-boot3-webflux-plugin-testweb</module >
142
142
</modules >
143
143
</profile >
144
+
145
+ <profile >
146
+ <id >maven.central.release</id >
147
+ <properties >
148
+ <env >release</env >
149
+ <spring .profiles.active>release</spring .profiles.active>
150
+ </properties >
151
+ <build >
152
+ <plugins >
153
+ <plugin >
154
+ <groupId >org.apache.maven.plugins</groupId >
155
+ <artifactId >maven-javadoc-plugin</artifactId >
156
+ <version >${plugin.javadoc.version} </version >
157
+ <configuration >
158
+ <skip >true</skip >
159
+ </configuration >
160
+ <executions >
161
+ <execution >
162
+ <id >attach-javadocs</id >
163
+ <goals >
164
+ <goal >jar</goal >
165
+ </goals >
166
+ </execution >
167
+ </executions >
168
+ </plugin >
169
+ </plugins >
170
+ </build >
171
+ </profile >
144
172
</profiles >
145
173
</project >
Original file line number Diff line number Diff line change 16
16
-->
17
17
18
18
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
19
- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
19
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
20
20
<modelVersion >4.0.0</modelVersion >
21
21
<parent >
22
22
<groupId >com.navercorp.pinpoint</groupId >
122
122
</plugins >
123
123
</build >
124
124
125
+ <profiles >
126
+ <profile >
127
+ <id >maven.central.release</id >
128
+ <properties >
129
+ <env >release</env >
130
+ <spring .profiles.active>release</spring .profiles.active>
131
+ </properties >
132
+ <build >
133
+ <plugins >
134
+ <plugin >
135
+ <groupId >org.apache.maven.plugins</groupId >
136
+ <artifactId >maven-javadoc-plugin</artifactId >
137
+ <version >${plugin.javadoc.version} </version >
138
+ <configuration >
139
+ <doclint >none</doclint >
140
+ <source >8</source >
141
+ <javadocExecutable >${jdk.home} /bin/javadoc</javadocExecutable >
142
+ </configuration >
143
+ <executions >
144
+ <execution >
145
+ <id >attach-javadocs</id >
146
+ <goals >
147
+ <goal >jar</goal >
148
+ </goals >
149
+ </execution >
150
+ </executions >
151
+ </plugin >
152
+ </plugins >
153
+ </build >
154
+ </profile >
155
+ </profiles >
125
156
</project >
Original file line number Diff line number Diff line change 28
28
<properties >
29
29
<jdk .version>9</jdk .version>
30
30
<jdk .home>${env.JAVA_11_HOME} </jdk .home>
31
- <maven .compiler.release>9</maven .compiler.release>
32
-
31
+ <!-- <maven.compiler.release>9</maven.compiler.release>-->
33
32
</properties >
34
33
35
34
<artifactId >pinpoint-bootstrap-java9</artifactId >
109
108
</plugins >
110
109
</build >
111
110
111
+
112
+ <profiles >
113
+ <profile >
114
+ <id >maven.central.release</id >
115
+ <properties >
116
+ <env >release</env >
117
+ <spring .profiles.active>release</spring .profiles.active>
118
+ </properties >
119
+ <build >
120
+ <plugins >
121
+ <plugin >
122
+ <groupId >org.apache.maven.plugins</groupId >
123
+ <artifactId >maven-javadoc-plugin</artifactId >
124
+ <version >${plugin.javadoc.version} </version >
125
+ <configuration >
126
+ <doclint >none</doclint >
127
+ <source >8</source >
128
+ <javadocExecutable >${jdk.home} /bin/javadoc</javadocExecutable >
129
+ </configuration >
130
+ <executions >
131
+ <execution >
132
+ <id >attach-javadocs</id >
133
+ <goals >
134
+ <goal >jar</goal >
135
+ </goals >
136
+ </execution >
137
+ </executions >
138
+ </plugin >
139
+ </plugins >
140
+ </build >
141
+ </profile >
142
+ </profiles >
112
143
</project >
Original file line number Diff line number Diff line change 51
51
</plugin >
52
52
</plugins >
53
53
</build >
54
+
55
+ <profiles >
56
+ <profile >
57
+ <id >maven.central.release</id >
58
+ <properties >
59
+ <env >release</env >
60
+ <spring .profiles.active>release</spring .profiles.active>
61
+ </properties >
62
+ <build >
63
+ <plugins >
64
+ <plugin >
65
+ <groupId >org.apache.maven.plugins</groupId >
66
+ <artifactId >maven-javadoc-plugin</artifactId >
67
+ <version >${plugin.javadoc.version} </version >
68
+ <configuration >
69
+ <doclint >none</doclint >
70
+ <javadocExecutable >${jdk.home} /bin/javadoc</javadocExecutable >
71
+ <additionalOptions >
72
+ <additionalOption >--add-exports</additionalOption >
73
+ <additionalOption >java.net.http/jdk.internal.net.http=ALL-UNNAMED</additionalOption >
74
+ </additionalOptions >
75
+ </configuration >
76
+ <executions >
77
+ <execution >
78
+ <id >attach-javadocs</id >
79
+ <goals >
80
+ <goal >jar</goal >
81
+ </goals >
82
+ </execution >
83
+ </executions >
84
+ </plugin >
85
+ </plugins >
86
+ </build >
87
+ </profile >
88
+ </profiles >
54
89
</project >
Original file line number Diff line number Diff line change 263
263
<plugin .jar.version>3.3.0</plugin .jar.version>
264
264
<plugin .antrun.version>3.0.0</plugin .antrun.version>
265
265
<plugin .build-helper.version>3.4.0</plugin .build-helper.version>
266
+ <plugin .javadoc.version>3.6.3</plugin .javadoc.version>
266
267
267
268
<plugin .spotbugs.version>4.7.3.6</plugin .spotbugs.version>
268
269
<plugin .pmd.version>3.21.2</plugin .pmd.version>
1955
1956
</plugin >
1956
1957
<plugin >
1957
1958
<artifactId >maven-javadoc-plugin</artifactId >
1958
- <version >3.4.0 </version >
1959
+ <version >${plugin.javadoc.version} </version >
1959
1960
<configuration >
1960
1961
<doclint >none</doclint >
1961
1962
<!-- <detectOfflineLinks>false</detectOfflineLinks>-->
1995
1996
<plugin >
1996
1997
<groupId >org.sonatype.plugins</groupId >
1997
1998
<artifactId >nexus-staging-maven-plugin</artifactId >
1998
- <version >1.6.8 </version >
1999
+ <version >1.6.13 </version >
1999
2000
<extensions >true</extensions >
2000
2001
<configuration >
2001
2002
<serverId >ossrh</serverId >
You can’t perform that action at this time.
0 commit comments