|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
2 | 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | + child.project.url.inherit.append.path="false"> |
4 | 5 | <modelVersion>4.0.0</modelVersion>
|
5 | 6 |
|
6 | 7 | <groupId>de.profhenry.sshsig</groupId>
|
7 | 8 | <artifactId>sshsig-parent</artifactId>
|
8 | 9 | <version>1.0.0-SNAPSHOT</version>
|
9 | 10 | <packaging>pom</packaging>
|
10 | 11 |
|
| 12 | + <description> |
| 13 | + Java implementation of the OpenSSH lightweight signature (and verification) ability. |
| 14 | + </description> |
| 15 | + <url>https://github.com/profhenry/sshsig</url> |
| 16 | + <inceptionYear>2023</inceptionYear> |
| 17 | + |
11 | 18 | <licenses>
|
12 | 19 | <license>
|
13 |
| - <name>Apache License 2.0</name> |
| 20 | + <name>Apache-2.0</name> |
14 | 21 | <url>http://www.spdx.org/licenses/Apache-2.0</url>
|
| 22 | + <distribution>repo</distribution> |
15 | 23 | </license>
|
16 | 24 | </licenses>
|
17 | 25 |
|
| 26 | + <developers> |
| 27 | + <developer> |
| 28 | + <id>profhenry</id> |
| 29 | + <name>Jan Henrik Wiesner</name> |
| 30 | + <email>github@profhenry.de</email> |
| 31 | + <timezone>Europe/Berlin</timezone> |
| 32 | + </developer> |
| 33 | + </developers> |
| 34 | + |
| 35 | + <scm child.scm.connection.inherit.append.path="false" |
| 36 | + child.scm.developerConnection.inherit.append.path="false" |
| 37 | + child.scm.url.inherit.append.path="false"> |
| 38 | + <connection>scm:git:git@github.com:profhenry/sshsig.git</connection> |
| 39 | + <url>https://github.com/profhenry/sshsig.git</url> |
| 40 | + <developerConnection>scm:git:git@github.com:profhenry/sshsig.git</developerConnection> |
| 41 | + <tag>HEAD</tag> |
| 42 | + </scm> |
| 43 | + |
| 44 | + <issueManagement> |
| 45 | + <system>github</system> |
| 46 | + <url>https://github.com/profhenry/sshsig/issues</url> |
| 47 | + </issueManagement> |
| 48 | + |
| 49 | + <ciManagement> |
| 50 | + <system>github-actions</system> |
| 51 | + <url>https://github.com/profhenry/sshsig/actions/workflows/maven.yml</url> |
| 52 | + </ciManagement> |
| 53 | + |
| 54 | + <distributionManagement> |
| 55 | + <repository> |
| 56 | + <id>ossrh</id> |
| 57 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 58 | + </repository> |
| 59 | + <snapshotRepository> |
| 60 | + <id>ossrh</id> |
| 61 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> |
| 62 | + </snapshotRepository> |
| 63 | + </distributionManagement> |
| 64 | + |
18 | 65 | <properties>
|
19 | 66 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
20 | 67 | <maven.compiler.target>1.8</maven.compiler.target>
|
|
94 | 141 | <plugin>
|
95 | 142 | <groupId>org.apache.maven.plugins</groupId>
|
96 | 143 | <artifactId>maven-surefire-plugin</artifactId>
|
97 |
| - <version>3.1.2</version> |
| 144 | + <version>3.2.2</version> |
| 145 | + </plugin> |
| 146 | + <plugin> |
| 147 | + <groupId>org.apache.maven.plugins</groupId> |
| 148 | + <artifactId>maven-toolchains-plugin</artifactId> |
| 149 | + <version>3.1.0</version> |
| 150 | + </plugin> |
| 151 | + <plugin> |
| 152 | + <groupId>org.apache.maven.plugins</groupId> |
| 153 | + <artifactId>maven-source-plugin</artifactId> |
| 154 | + <version>3.3.0</version> |
| 155 | + </plugin> |
| 156 | + <plugin> |
| 157 | + <groupId>org.apache.maven.plugins</groupId> |
| 158 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 159 | + <version>3.6.3</version> |
| 160 | + </plugin> |
| 161 | + <plugin> |
| 162 | + <groupId>org.apache.maven.plugins</groupId> |
| 163 | + <artifactId>maven-deploy-plugin</artifactId> |
| 164 | + <version>3.1.1</version> |
| 165 | + <configuration> |
| 166 | + <deployAtEnd>true</deployAtEnd> |
| 167 | + </configuration> |
| 168 | + </plugin> |
| 169 | + <plugin> |
| 170 | + <groupId>org.codehaus.mojo</groupId> |
| 171 | + <artifactId>flatten-maven-plugin</artifactId> |
| 172 | + <version>1.5.0</version> |
| 173 | + </plugin> |
| 174 | + <plugin> |
| 175 | + <groupId>org.apache.maven.plugins</groupId> |
| 176 | + <artifactId>maven-release-plugin</artifactId> |
| 177 | + <version>3.0.1</version> |
98 | 178 | </plugin>
|
99 | 179 | </plugins>
|
100 | 180 | </pluginManagement>
|
101 | 181 | <plugins>
|
102 | 182 | <plugin>
|
103 | 183 | <groupId>org.apache.maven.plugins</groupId>
|
104 | 184 | <artifactId>maven-toolchains-plugin</artifactId>
|
105 |
| - <version>3.1.0</version> |
106 | 185 | <executions>
|
107 | 186 | <execution>
|
108 | 187 | <goals>
|
|
118 | 197 | </toolchains>
|
119 | 198 | </configuration>
|
120 | 199 | </plugin>
|
| 200 | + <plugin> |
| 201 | + <groupId>org.apache.maven.plugins</groupId> |
| 202 | + <artifactId>maven-source-plugin</artifactId> |
| 203 | + <executions> |
| 204 | + <execution> |
| 205 | + <id>attach-sources</id> |
| 206 | + <goals> |
| 207 | + <goal>jar-no-fork</goal> |
| 208 | + </goals> |
| 209 | + </execution> |
| 210 | + </executions> |
| 211 | + </plugin> |
| 212 | + <plugin> |
| 213 | + <groupId>org.apache.maven.plugins</groupId> |
| 214 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 215 | + <executions> |
| 216 | + <execution> |
| 217 | + <id>attach-javadocs</id> |
| 218 | + <goals> |
| 219 | + <goal>aggregate-no-fork</goal> |
| 220 | + </goals> |
| 221 | + </execution> |
| 222 | + </executions> |
| 223 | + </plugin> |
| 224 | + <plugin> |
| 225 | + <groupId>org.codehaus.mojo</groupId> |
| 226 | + <artifactId>flatten-maven-plugin</artifactId> |
| 227 | + <configuration> |
| 228 | + <flattenMode>oss</flattenMode> |
| 229 | + <flattenDependencyMode>all</flattenDependencyMode> |
| 230 | + <pomElements> |
| 231 | + <inceptionYear>expand</inceptionYear> |
| 232 | + </pomElements> |
| 233 | + </configuration> |
| 234 | + <executions> |
| 235 | + <execution> |
| 236 | + <id>flatten</id> |
| 237 | + <phase>process-resources</phase> |
| 238 | + <goals> |
| 239 | + <goal>flatten</goal> |
| 240 | + </goals> |
| 241 | + </execution> |
| 242 | + <execution> |
| 243 | + <id>flatten.clean</id> |
| 244 | + <phase>clean</phase> |
| 245 | + <goals> |
| 246 | + <goal>clean</goal> |
| 247 | + </goals> |
| 248 | + </execution> |
| 249 | + </executions> |
| 250 | + </plugin> |
| 251 | + <plugin> |
| 252 | + <groupId>org.apache.maven.plugins</groupId> |
| 253 | + <artifactId>maven-deploy-plugin</artifactId> |
| 254 | + <configuration> |
| 255 | + <skip>true</skip> |
| 256 | + </configuration> |
| 257 | + <inherited>false</inherited> |
| 258 | + </plugin> |
121 | 259 | </plugins>
|
122 | 260 | </build>
|
123 | 261 |
|
|
0 commit comments