|
14 | 14 | </licenses>
|
15 | 15 | <developers>
|
16 | 16 | <developer>
|
| 17 | + <id>mgeipel</id> |
17 | 18 | <name>Markus M. Geipel</name>
|
18 | 19 |
|
| 20 | + <url>https://github.com/mgeipel</url> |
| 21 | + <organization>Deutsche Nationalbibliothek</organization> |
| 22 | + <organizationUrl>http://www.dnb.de</organizationUrl> |
| 23 | + <roles> |
| 24 | + <role>architect</role> |
| 25 | + <role>developer</role> |
| 26 | + </roles> |
| 27 | + <timezone>+1</timezone> |
19 | 28 | </developer>
|
20 | 29 | <developer>
|
| 30 | + <id>cboehme</id> |
21 | 31 | <name>Christoph Böhme</name>
|
22 | 32 |
|
| 33 | + <url>https://github.com/cboehme</url> |
| 34 | + <organization>Deutsche Nationalbibliothek</organization> |
| 35 | + <organizationUrl>http://www.dnb.de</organizationUrl> |
| 36 | + <roles> |
| 37 | + <role>architect</role> |
| 38 | + <role>developer</role> |
| 39 | + </roles> |
| 40 | + <timezone>+1</timezone> |
23 | 41 | </developer>
|
24 | 42 | </developers>
|
25 | 43 |
|
|
61 | 79 | </configuration>
|
62 | 80 | </plugin>
|
63 | 81 |
|
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.maven.plugins</groupId> |
| 84 | + <artifactId>maven-jar-plugin</artifactId> |
| 85 | + <version>2.3.1</version> |
| 86 | + <configuration> |
| 87 | + <archive> |
| 88 | + <manifest> |
| 89 | + <addClasspath>true</addClasspath> |
| 90 | + <!-- Configures the classpath prefix. This configuration option is |
| 91 | + used to specify that all needed libraries are found under lib/ directory. --> |
| 92 | + <classpathPrefix>lib/</classpathPrefix> |
| 93 | + <!-- Specifies the main class of the application --> |
| 94 | + <mainClass>org.culturegraph.mf.Flux</mainClass> |
| 95 | + </manifest> |
| 96 | + </archive> |
| 97 | + </configuration> |
| 98 | + </plugin> |
| 99 | + |
| 100 | + |
64 | 101 | <plugin>
|
65 | 102 | <artifactId>maven-assembly-plugin</artifactId>
|
66 | 103 | <version>2.2.1</version>
|
|
158 | 195 |
|
159 | 196 |
|
160 | 197 | <profiles>
|
| 198 | + <profile> |
| 199 | + <id>maven-central</id> |
| 200 | + <build> |
| 201 | + <plugins> |
| 202 | + <plugin> |
| 203 | + <groupId>org.apache.maven.plugins</groupId> |
| 204 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 205 | + <version>2.8</version> |
| 206 | + <executions> |
| 207 | + <execution> |
| 208 | + <id>attach-javadocs</id> |
| 209 | + <phase>package</phase> |
| 210 | + <goals> |
| 211 | + <goal>jar</goal> |
| 212 | + </goals> |
| 213 | + <configuration> |
| 214 | + <show>public</show> |
| 215 | + <nohelp>true</nohelp> |
| 216 | + </configuration> |
| 217 | + </execution> |
| 218 | + </executions> |
| 219 | + </plugin> |
| 220 | + <plugin> |
| 221 | + <groupId>org.apache.maven.plugins</groupId> |
| 222 | + <artifactId>maven-source-plugin</artifactId> |
| 223 | + <version>2.1.2</version> |
| 224 | + <executions> |
| 225 | + <execution> |
| 226 | + <id>attach-sources</id> |
| 227 | + <phase>verify</phase> |
| 228 | + <goals> |
| 229 | + <goal>jar-no-fork</goal> |
| 230 | + </goals> |
| 231 | + </execution> |
| 232 | + </executions> |
| 233 | + </plugin> |
| 234 | + <plugin> |
| 235 | + <groupId>org.apache.maven.plugins</groupId> |
| 236 | + <artifactId>maven-gpg-plugin</artifactId> |
| 237 | + <version>1.4</version> |
| 238 | + <executions> |
| 239 | + <execution> |
| 240 | + <id>sign-artifacts</id> |
| 241 | + <phase>verify</phase> |
| 242 | + <goals> |
| 243 | + <goal>sign</goal> |
| 244 | + </goals> |
| 245 | + </execution> |
| 246 | + </executions> |
| 247 | + </plugin> |
| 248 | + </plugins> |
| 249 | + </build> |
| 250 | + </profile> |
161 | 251 | <profile>
|
162 | 252 | <id>hudson</id>
|
163 | 253 | <activation>
|
|
0 commit comments