|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
| 7 | + <properties> |
| 8 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 9 | + |
| 10 | + <github.organization>Ktt-Development</github.organization> |
| 11 | + |
| 12 | + <github.repository>simplehttpserver</github.repository> |
| 13 | + <github.repository.description>📕 SimpleHttpServer :: Simplified implementation of the sun http server :: Simplified handlers to execute complex operations</github.repository.description> |
| 14 | + <github.repository.license>GPL-2</github.repository.license> |
| 15 | + <github.repository.head>main</github.repository.head> |
| 16 | + |
| 17 | + <github.username>Katsute</github.username> |
| 18 | + </properties> |
| 19 | + |
7 | 20 | <groupId>com.kttdevelopment</groupId> |
8 | | - <artifactId>simplehttpserver</artifactId> |
| 21 | + <artifactId>${github.repository}</artifactId> |
9 | 22 | <version>03.06.05</version> |
10 | 23 |
|
11 | | - <url>https://github.com/Ktt-Development/simplehttpserver</url> |
| 24 | + <name>${github.repository}</name> |
| 25 | + <description>${github.repository.description}</description> |
| 26 | + <url>https://github.com/${github.organization}/${github.repository}</url> |
| 27 | + |
| 28 | + <licenses> |
| 29 | + <license> |
| 30 | + <name>${github.repository.license}</name> |
| 31 | + <distribution>repo</distribution> |
| 32 | + <url>https://github.com/${github.organization}/${github.repository}/blob/${github.repository.head}/LICENSE</url> |
| 33 | + </license> |
| 34 | + </licenses> |
| 35 | + |
| 36 | + <developers> |
| 37 | + <developer> |
| 38 | + <name>${github.username}</name> |
| 39 | + <roles> |
| 40 | + <role>developer</role> |
| 41 | + </roles> |
| 42 | + <url>https://github.com/${github.username}</url> |
| 43 | + <organization>${github.organization}</organization> |
| 44 | + <organizationUrl>https://github.com/${github.organization}</organizationUrl> |
| 45 | + </developer> |
| 46 | + </developers> |
12 | 47 |
|
13 | 48 | <scm> |
14 | | - <url>https://github.com/Ktt-Development/simplehttpserver.git</url> |
15 | | - <connection>scm:git:git@github.com:Ktt-Development/simplehttpserver.git</connection> |
16 | | - <developerConnection>scm:git:git@github.com:Ktt-Development/simplehttpserver.git</developerConnection> |
| 49 | + <url>https://github.com/${github.organization}/${github.repository}.git</url> |
| 50 | + <connection>scm:git:git@github.com:${github.organization}/${github.repository}.git</connection> |
| 51 | + <developerConnection>scm:git:git@github.com:${github.organization}/${github.repository}.git</developerConnection> |
17 | 52 | <tag>HEAD</tag> |
18 | 53 | </scm> |
19 | 54 |
|
|
28 | 63 | </repository> |
29 | 64 | </distributionManagement> |
30 | 65 |
|
31 | | - <properties> |
32 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
33 | | - </properties> |
34 | | - |
35 | 66 | <build> |
36 | 67 | <plugins> |
37 | 68 | <plugin> |
|
0 commit comments