|
12 | 12 | <url>https://github.com/EinfacheSache/EasyAPI</url> |
13 | 13 | <description>A lightweight and easy-to-use API</description> |
14 | 14 |
|
| 15 | + <licenses> |
| 16 | + <license> |
| 17 | + <name>MIT License</name> |
| 18 | + <url>https://opensource.org/licenses/MIT</url> |
| 19 | + <distribution>repo</distribution> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <scm> |
| 24 | + <url>https://github.com/EinfacheSache/EasyAPI</url> |
| 25 | + <connection>scm:git:git://github.com/EinfacheSache/EasyAPI.git</connection> |
| 26 | + <developerConnection>scm:git:ssh://git@github.com/EinfacheSache/EasyAPI.git</developerConnection> |
| 27 | + <tag>HEAD</tag> |
| 28 | + </scm> |
| 29 | + |
15 | 30 | <developers> |
16 | 31 | <developer> |
17 | | - <name>EinfacheSache</name> |
18 | | - <email>klugetommy@web.de</email> |
19 | | - <url>https://einfachesache.de</url> |
| 32 | + <id>einfacheSache</id> |
| 33 | + <url>https://github.com/EinfacheSache</url> |
20 | 34 | </developer> |
21 | 35 | </developers> |
22 | 36 |
|
|
36 | 50 | </configuration> |
37 | 51 | </plugin> |
38 | 52 |
|
| 53 | + <plugin> |
| 54 | + <groupId>org.apache.maven.plugins</groupId> |
| 55 | + <artifactId>maven-source-plugin</artifactId> |
| 56 | + <version>3.3.1</version> |
| 57 | + <executions> |
| 58 | + <execution> |
| 59 | + <id>attach-sources</id> |
| 60 | + <goals> |
| 61 | + <goal>jar</goal> |
| 62 | + </goals> |
| 63 | + </execution> |
| 64 | + </executions> |
| 65 | + </plugin> |
| 66 | + |
39 | 67 | <!-- Shading --> |
40 | 68 | <plugin> |
41 | 69 | <groupId>org.apache.maven.plugins</groupId> |
|
50 | 78 | </execution> |
51 | 79 | </executions> |
52 | 80 | </plugin> |
| 81 | + <plugin> |
| 82 | + <groupId>org.apache.maven.plugins</groupId> |
| 83 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 84 | + <version>3.8.0</version> |
| 85 | + <executions> |
| 86 | + <execution> |
| 87 | + <id>attach-javadocs</id> |
| 88 | + <goals> |
| 89 | + <goal>jar</goal> |
| 90 | + </goals> |
| 91 | + </execution> |
| 92 | + </executions> |
| 93 | + <configuration> |
| 94 | + <source>${java.version}</source> |
| 95 | + <!-- verhindert, dass Javadoc-Warnings den Build killen --> |
| 96 | + <failOnError>false</failOnError> |
| 97 | + </configuration> |
| 98 | + </plugin> |
53 | 99 | <plugin> |
54 | 100 | <groupId>org.sonatype.central</groupId> |
55 | 101 | <artifactId>central-publishing-maven-plugin</artifactId> |
|
64 | 110 | <autoPublish>true</autoPublish> |
65 | 111 | </configuration> |
66 | 112 | </plugin> |
| 113 | + <plugin> |
| 114 | + <groupId>org.apache.maven.plugins</groupId> |
| 115 | + <artifactId>maven-gpg-plugin</artifactId> |
| 116 | + <version>3.2.4</version> |
| 117 | + <executions> |
| 118 | + <execution> |
| 119 | + <id>sign-artifacts</id> |
| 120 | + <phase>verify</phase> |
| 121 | + <goals> |
| 122 | + <goal>sign</goal> |
| 123 | + </goals> |
| 124 | + </execution> |
| 125 | + </executions> |
| 126 | + </plugin> |
67 | 127 | </plugins> |
68 | 128 | <resources> |
69 | 129 | <resource> |
|
125 | 185 | <scope>provided</scope> |
126 | 186 | </dependency> |
127 | 187 | </dependencies> |
128 | | - |
129 | | - <profiles> |
130 | | - <profile> |
131 | | - <id>release</id> |
132 | | - <build> |
133 | | - <plugins> |
134 | | - <plugin> |
135 | | - <groupId>org.apache.maven.plugins</groupId> |
136 | | - <artifactId>maven-gpg-plugin</artifactId> |
137 | | - <version>3.2.4</version> |
138 | | - <executions> |
139 | | - <execution> |
140 | | - <id>sign-artifacts</id> |
141 | | - <phase>verify</phase> |
142 | | - <goals> |
143 | | - <goal>sign</goal> |
144 | | - </goals> |
145 | | - </execution> |
146 | | - </executions> |
147 | | - </plugin> |
148 | | - </plugins> |
149 | | - </build> |
150 | | - </profile> |
151 | | - </profiles> |
152 | 188 | </project> |
0 commit comments