|
41 | 41 | </developer> |
42 | 42 | </developers> |
43 | 43 |
|
44 | | - <repositories> |
45 | | - <repository> |
46 | | - <id>central-portal-snapshots</id> |
47 | | - <name>Central Portal Snapshots</name> |
48 | | - <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
49 | | - <releases> |
50 | | - <enabled>false</enabled> |
51 | | - </releases> |
52 | | - <snapshots> |
53 | | - <enabled>true</enabled> |
54 | | - </snapshots> |
55 | | - </repository> |
56 | | - </repositories> |
57 | | - |
58 | | - <build> |
59 | | - <plugins> |
60 | | - <!-- release management --> |
61 | | - <plugin> |
62 | | - <groupId>org.apache.maven.plugins</groupId> |
63 | | - <artifactId>maven-release-plugin</artifactId> |
64 | | - <version>3.0.1</version> |
65 | | - <configuration> |
66 | | - <autoVersionSubmodules>true</autoVersionSubmodules> |
67 | | - <useReleaseProfile>false</useReleaseProfile> |
68 | | - <releaseProfiles>release</releaseProfiles> |
69 | | - <goals>deploy</goals> |
70 | | - </configuration> |
71 | | - </plugin> |
72 | | - |
73 | | - <plugin> |
74 | | - <groupId>org.apache.maven.plugins</groupId> |
75 | | - <artifactId>maven-site-plugin</artifactId> |
76 | | - <version>3.12.1</version> |
77 | | - </plugin> |
78 | | - |
79 | | - <plugin> |
80 | | - <groupId>org.apache.maven.plugins</groupId> |
81 | | - <artifactId>maven-project-info-reports-plugin</artifactId> |
82 | | - <version>3.1.0</version> |
83 | | - </plugin> |
84 | | - |
85 | | - <plugin> |
86 | | - <groupId>org.apache.maven.plugins</groupId> |
87 | | - <artifactId>maven-javadoc-plugin</artifactId> |
88 | | - <version>3.2.0</version> |
89 | | - <configuration> |
90 | | - <additionalOptions>-Xdoclint:none</additionalOptions> |
91 | | - </configuration> |
92 | | - </plugin> |
93 | | - |
94 | | - <plugin> |
95 | | - <groupId>org.apache.maven.plugins</groupId> |
96 | | - <artifactId>maven-jxr-plugin</artifactId> |
97 | | - <version>3.0.0</version> |
98 | | - </plugin> |
99 | | - </plugins> |
100 | | - </build> |
101 | | - |
102 | | - <reporting> |
103 | | - <plugins> |
104 | | - <!-- java doc --> |
105 | | - <plugin> |
106 | | - <groupId>org.apache.maven.plugins</groupId> |
107 | | - <artifactId>maven-javadoc-plugin</artifactId> |
108 | | - <version>3.2.0</version> |
109 | | - <configuration> |
110 | | - <additionalOptions>-Xdoclint:none</additionalOptions> |
111 | | - </configuration> |
112 | | - </plugin> |
113 | | - <plugin> |
114 | | - <groupId>org.apache.maven.plugins</groupId> |
115 | | - <artifactId>maven-jxr-plugin</artifactId> |
116 | | - <version>3.0.0</version> |
117 | | - </plugin> |
118 | | - </plugins> |
119 | | - </reporting> |
120 | 44 | <properties> |
121 | 45 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
122 | 46 | <postgresql.version>42.7.3</postgresql.version> |
123 | 47 | <junit.version>4.13.1</junit.version> |
124 | 48 | </properties> |
125 | 49 | <profiles> |
126 | | - |
127 | | - <!-- Profile for Releases --> |
128 | 50 | <profile> |
129 | 51 | <id>release</id> |
130 | 52 | <build> |
131 | 53 | <plugins> |
132 | | - <!-- for RELEASES: Central Publishing Plugin --> |
133 | 54 | <plugin> |
134 | 55 | <groupId>org.sonatype.central</groupId> |
135 | 56 | <artifactId>central-publishing-maven-plugin</artifactId> |
136 | | - <version>0.8.0</version> |
| 57 | + <version>0.6.0</version> |
137 | 58 | <extensions>true</extensions> |
138 | 59 | <configuration> |
139 | 60 | <publishingServerId>central</publishingServerId> |
140 | 61 | <autoPublish>true</autoPublish> |
141 | | - <waitUntil>published</waitUntil> |
142 | 62 | </configuration> |
143 | 63 | </plugin> |
144 | 64 |
|
145 | | - <!-- Source Plugin --> |
146 | 65 | <plugin> |
147 | 66 | <groupId>org.apache.maven.plugins</groupId> |
148 | 67 | <artifactId>maven-source-plugin</artifactId> |
149 | | - <version>3.2.1</version> |
| 68 | + <version>3.3.1</version> |
150 | 69 | <executions> |
151 | 70 | <execution> |
152 | 71 | <id>attach-sources</id> |
|
157 | 76 | </executions> |
158 | 77 | </plugin> |
159 | 78 |
|
160 | | - <!-- Javadoc Plugin --> |
161 | 79 | <plugin> |
162 | 80 | <groupId>org.apache.maven.plugins</groupId> |
163 | 81 | <artifactId>maven-javadoc-plugin</artifactId> |
164 | | - <version>3.2.0</version> |
165 | | - <configuration> |
166 | | - <additionalOptions>-Xdoclint:none</additionalOptions> |
167 | | - </configuration> |
| 82 | + <version>3.10.1</version> |
168 | 83 | <executions> |
169 | 84 | <execution> |
170 | 85 | <id>attach-javadocs</id> |
|
175 | 90 | </executions> |
176 | 91 | </plugin> |
177 | 92 |
|
178 | | - <!-- GPG Signing Plugin --> |
179 | 93 | <plugin> |
180 | 94 | <groupId>org.apache.maven.plugins</groupId> |
181 | 95 | <artifactId>maven-gpg-plugin</artifactId> |
182 | | - <version>3.1.0</version> |
| 96 | + <version>3.2.4</version> |
183 | 97 | <executions> |
184 | 98 | <execution> |
185 | 99 | <id>sign-artifacts</id> |
|
190 | 104 | </execution> |
191 | 105 | </executions> |
192 | 106 | </plugin> |
193 | | - |
194 | | - <plugin> |
195 | | - <!-- Explicitly upgrade deploy plugin to fix error --> |
196 | | - <groupId>org.apache.maven.plugins</groupId> |
197 | | - <artifactId>maven-deploy-plugin</artifactId> |
198 | | - <version>3.1.4</version> |
199 | | - <configuration> |
200 | | - <skip>true</skip> |
201 | | - </configuration> |
202 | | - </plugin> |
203 | 107 | </plugins> |
204 | 108 | </build> |
205 | 109 | </profile> |
|
0 commit comments