|
25 | 25 | </license> |
26 | 26 | </licenses> |
27 | 27 |
|
| 28 | + <developers> |
| 29 | + <developer> |
| 30 | + <organization>Botlify</organization> |
| 31 | + <url>https://github.com/botlify-net</url> |
| 32 | + <timezone>Europe/Paris</timezone> |
| 33 | + </developer> |
| 34 | + </developers> |
| 35 | + |
28 | 36 | <distributionManagement> |
29 | 37 | <snapshotRepository> |
30 | 38 | <id>ossrh</id> |
|
95 | 103 |
|
96 | 104 | <build> |
97 | 105 | <plugins> |
| 106 | + <plugin> |
| 107 | + <!-- Build the JavaDoc --> |
| 108 | + <groupId>org.apache.maven.plugins</groupId> |
| 109 | + <artifactId>maven-source-plugin</artifactId> |
| 110 | + <version>3.2.1</version> |
| 111 | + <executions> |
| 112 | + <execution> |
| 113 | + <id>attach-sources</id> |
| 114 | + <goals> |
| 115 | + <goal>jar</goal> |
| 116 | + </goals> |
| 117 | + </execution> |
| 118 | + </executions> |
| 119 | + </plugin> |
| 120 | + |
| 121 | + <!-- Build the JavaDoc --> |
| 122 | + <plugin> |
| 123 | + <groupId>org.apache.maven.plugins</groupId> |
| 124 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 125 | + <version>3.5.0</version> |
| 126 | + <configuration> |
| 127 | + <source>1.8</source> |
| 128 | + </configuration> |
| 129 | + <executions> |
| 130 | + <execution> |
| 131 | + <id>attach-javadocs</id> |
| 132 | + <goals> |
| 133 | + <goal>jar</goal> |
| 134 | + </goals> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + |
| 139 | + <!-- Maven compiler plugin --> |
98 | 140 | <plugin> |
99 | 141 | <groupId>org.apache.maven.plugins</groupId> |
100 | 142 | <artifactId>maven-compiler-plugin</artifactId> |
|
104 | 146 | <target>1.8</target> |
105 | 147 | </configuration> |
106 | 148 | </plugin> |
| 149 | + |
| 150 | + <!-- Sonatype OSSRH --> |
107 | 151 | <plugin> |
108 | 152 | <groupId>org.sonatype.plugins</groupId> |
109 | 153 | <artifactId>nexus-staging-maven-plugin</artifactId> |
110 | | - <version>1.6.7</version> |
| 154 | + <version>1.6.13</version> |
111 | 155 | <extensions>true</extensions> |
112 | 156 | <configuration> |
113 | 157 | <serverId>ossrh</serverId> |
114 | 158 | <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
115 | 159 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
116 | 160 | </configuration> |
117 | 161 | </plugin> |
| 162 | + <!-- Maven GPG plugin --> |
| 163 | + <plugin> |
| 164 | + <groupId>org.apache.maven.plugins</groupId> |
| 165 | + <artifactId>maven-gpg-plugin</artifactId> |
| 166 | + <version>3.0.1</version> |
| 167 | + <executions> |
| 168 | + <execution> |
| 169 | + <id>sign-artifacts</id> |
| 170 | + <phase>verify</phase> |
| 171 | + <configuration> |
| 172 | + <gpgArguments> |
| 173 | + <arg>--pinentry-mode</arg> |
| 174 | + <arg>loopback</arg> |
| 175 | + </gpgArguments> |
| 176 | + </configuration> |
| 177 | + <goals> |
| 178 | + <goal>sign</goal> |
| 179 | + </goals> |
| 180 | + </execution> |
| 181 | + </executions> |
| 182 | + </plugin> |
118 | 183 | </plugins> |
119 | 184 | </build> |
120 | 185 |
|
|
0 commit comments