|
10 | 10 | <artifactId>AssignMark</artifactId> |
11 | 11 | <version>1.0.8</version> |
12 | 12 | <inceptionYear>2021</inceptionYear> |
| 13 | + <url>https://github.com/RocketMaDev/AssignMark</url> |
| 14 | + <description>A program aiming at assigning marks for Chinese university entrance exams</description> |
13 | 15 |
|
14 | 16 | <licenses> |
15 | 17 | <license> |
|
101 | 103 | <plugin> |
102 | 104 | <groupId>org.apache.maven.plugins</groupId> |
103 | 105 | <artifactId>maven-jar-plugin</artifactId> |
| 106 | + <version>2.4</version> |
104 | 107 | <executions> |
105 | 108 | <execution> |
106 | 109 | <goals> |
|
113 | 116 | <plugin> |
114 | 117 | <groupId>org.apache.maven.plugins</groupId> |
115 | 118 | <artifactId>maven-source-plugin</artifactId> |
| 119 | + <version>3.2.1</version> |
116 | 120 | <executions> |
117 | 121 | <execution> |
118 | 122 | <id>attach-sources</id> |
|
125 | 129 | <plugin> |
126 | 130 | <groupId>org.apache.maven.plugins</groupId> |
127 | 131 | <artifactId>maven-javadoc-plugin</artifactId> |
| 132 | + <version>3.3.1</version> |
| 133 | + <configuration> |
| 134 | + <encoding>UTF-8</encoding> |
| 135 | + <aggregate>true</aggregate> |
| 136 | + <charset>UTF-8</charset> |
| 137 | + <docencoding>UTF-8</docencoding> |
| 138 | + </configuration> |
128 | 139 | <executions> |
129 | 140 | <execution> |
130 | 141 | <id>attach-javadocs</id> |
131 | 142 | <goals> |
132 | 143 | <goal>jar</goal> |
133 | 144 | </goals> |
134 | 145 | <configuration> |
135 | | - <additionalOption> |
136 | | - <additionalOption>-Xdoclint:none</additionalOption> |
137 | | - </additionalOption> |
| 146 | + <doclint>none</doclint> |
138 | 147 | </configuration> |
139 | 148 | </execution> |
140 | 149 | </executions> |
141 | 150 | </plugin> |
142 | 151 | <plugin> |
143 | 152 | <groupId>org.apache.maven.plugins</groupId> |
144 | 153 | <artifactId>maven-gpg-plugin</artifactId> |
| 154 | + <version>3.0.1</version> |
145 | 155 | <executions> |
146 | 156 | <execution> |
147 | 157 | <id>sign-artifacts</id> |
|
158 | 168 | <version>1.6.3</version> |
159 | 169 | <extensions>true</extensions> |
160 | 170 | <configuration> |
161 | | - <serverId>ossrh</serverId> |
162 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 171 | + <serverId>sonatype-nexus-staging</serverId> |
| 172 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
163 | 173 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
164 | 174 | </configuration> |
165 | 175 | </plugin> |
|
169 | 179 | <snapshotRepository> |
170 | 180 | <id>sonatype-nexus-snapshots</id> |
171 | 181 | <name>Sonatype Nexus Snapshots</name> |
172 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 182 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> |
173 | 183 | </snapshotRepository> |
174 | 184 | <repository> |
175 | 185 | <id>sonatype-nexus-staging</id> |
176 | 186 | <name>Nexus Release Repository</name> |
177 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 187 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
178 | 188 | </repository> |
179 | 189 | </distributionManagement> |
180 | 190 | </profile> |
|
0 commit comments