-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
692 lines (684 loc) · 24.5 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.jupload</groupId>
<artifactId>jupload</artifactId>
<packaging>jar</packaging>
<version>5.0.7</version>
<name>JUpload project on Sourceforge</name>
<description>
Java Multiple File Upload Applet (JUpload) takes care of
the limitation posed by traditional HTML upload forms
by allowing you to upload a whole directory and the files within it with
a single click. Optionally, it allows
simple picture management. JUpload works also as a standard standalone Java application,
and can be embedded in any Java application to do HTTP or FTP file transfert.
</description>
<url>http://jupload.sourceforge.net</url>
<issueManagement>
<system>Sourceforge trackers</system>
<url>https://sourceforge.net/tracker/?group_id=59144</url>
</issueManagement>
<developers>
<developer>
<id>etienne_sf</id>
<name>Etienne</name>
<email>[email protected]</email>
<url>https://sourceforge.net/users/etienne_sf</url>
<roles>
<role>Administrator</role>
</roles>
</developer>
<developer>
<id>felfert</id>
<name>Fritz Elfert</name>
<email>[email protected]</email>
<url>https://sourceforge.net/users/felfert</url>
<roles>
<role>Developper (Felfert did a lot enhancement, but he is no more active)</role>
</roles>
</developer>
<developer>
<id>postb99</id>
<name>Barbara Post</name>
<email>[email protected]</email>
<url>https://sourceforge.net/users/postb99</url>
<roles>
<role>Developper</role>
</roles>
</developer>
<developer>
<id>nordfalk</id>
<name>Jacob Nordfalk</name>
<email>[email protected]</email>
<url>https://sourceforge.net/users/nordfalk</url>
<roles>
<role>Developper</role>
</roles>
</developer>
<developer>
<id>ehsavoie</id>
<name>ehsavoie</name>
<email>[email protected]</email>
<url>https://sourceforge.net/users/ehsavoie</url>
<roles>
<role>Developper</role>
</roles>
</developer>
<developer>
<id>bilbo_uk</id>
<name>Geoff</name>
<email>[email protected]</email>
<url>https://sourceforge.net/users/bilbo_uk</url>
<roles>
<role>Developper</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>GNU GPL V3</name>
<url>http://www.gnu.org/licenses/gpl-3.0.html</url>
<comments>This project is a standard open source project... So let's use a standard open source licence.</comments>
</license>
</licenses>
<scm>
<connection>scm:svn:https://jupload.svn.sourceforge.net/svnroot/jupload/tags/jupload-5.0.7</connection>
<developerConnection>scm:svn:https://jupload.svn.sourceforge.net/svnroot/jupload/tags/jupload-5.0.7</developerConnection>
<url>https://jupload.svn.sourceforge.net/svnroot/jupload/tags/jupload-5.0.7</url>
</scm>
<profiles>
<profile>
<!-- The generate-key is executed twice in the release:perform goal. So, we remove the generated keystore,
in the release:perform goal execution. This should be executed before the generate-key. So it will do
something ... only if generate-key is executed twice. -->
<id>remove-keystore</id>
<activation>
<file>
<missing>target/keystore</missing>
</file>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<configuration>
<tasks>
<delete file="target/keystore" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- This profile generates a key, for applet signing. This key is only used if the user didn't define
the 'jupload.keystore.filename' property in its settings.xml file. -->
<!-- See the HowTo compile, on JUpload site for details. -->
<!-- See the generate-sign-key profile, here above, for use of this generated key. -->
<id>generate-key</id>
<activation>
<file>
<!-- Property biding is done after profile resulation. We need to 'hard-code' the file name, for
it to work. -->
<missing>target/keystore</missing>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>keytool-maven-plugin</artifactId>
<version>1.0</version>
<!-- This plugin allows to locally generate a certificate, to sign the applet. See http://jupload.sourceforge.net/howto-compile.html -->
<executions>
<execution>
<id>generate-demo-cert</id>
<phase>prepare-package</phase>
<goals>
<goal>genkey</goal>
</goals>
</execution>
</executions>
<configuration>
<alias>jupload</alias>
<keystore>target/keystore</keystore>
<storepass>jupload-demo-pass</storepass>
<dname>cn=demo-jupload.sourceforge.net,ou=None,L=None,ST=None,o=JUpload,c=None</dname>
<validity>180</validity> <!-- Six month is enough, for a demo certificate -->
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- This profile: (1) generates an assembly (which contains the official release for JUpload) and
(2) sign all the project artefacts with the user's PGP key. It is activated only when performing a release. -->
<id>generate-jupload-release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<configuration>
<finalName>jupload</finalName>
<descriptors>
<descriptor>src/main/assembly/release.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- append to the packaging phase. -->
<goals>
<goal>single</goal> <!-- goals == mojos -->
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>gpg-sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<passphrase>${jupload.pgp.passphrase}</passphrase>
<keyname>${jupload.pgp.keyname}</keyname>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- The translate profile manages the language files. It actually executes the jupload-translation
maven plugin (available in this package, in the ./jupload-translation/ folder). This execution take the
source language files, in the ./src/main/lang/, and re-generates the ./src/main/resources/lang/* files. -->
<!-- To activate it, you'll need to build the jupload-translation maven plugin, make it available
in your local repository (mvn install in the ./jupload-translation/ folder should be enough), and define
the jupload.translation property to true (by executing this command in the root jupload folder: mvn install
-Djupload.translation) -->
<id>translate</id>
<activation>
<property>
<name>jupload.translation</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>net.sf.jupload</groupId>
<artifactId>maven-translation-plugin</artifactId>
<version>1.1.0</version>
<executions>
<execution>
<id>translate-generate-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>translate</goal>
</goals>
</execution>
<execution>
<id>translate-pre-site</id>
<phase>pre-site</phase>
<goals>
<goal>translate</goal>
</goals>
</execution>
</executions>
<configuration>
<docFileExtension>.apt</docFileExtension>
<docFolder>src/site/apt</docFolder>
<coppermineFolder>src/main/translation/coppermine.utf-8
</coppermineFolder>
<inputEncoding>UTF-16</inputEncoding>
<inputFolder>src/main/translation/applet.utf-16</inputFolder>
<resourceLangFolder>src/main/resources/lang</resourceLangFolder>
<templateAvailableTranslation>src/main/translation/available_translations.template
</templateAvailableTranslation>
<templateOneTranslation>src/main/translation/one_translation.template
</templateOneTranslation>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- This profile activate all reporting for the JUpload site. It's activated by default. It's main
use is ... that it can be deactivated. Useful, for checking the APT files rendering. Executing 'mvn site
-Dskip.reporting' will deactivate default profiles, and quickly generate the maven site, from the previously
run reports. -->
<id>reporting</id>
<activation>
<property>
<name>!skip.reporting</name>
</property>
</activation>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.4</version>
<configuration>
<targetJdk>1.5</targetJdk>
<rulesets>
<ruleset>/rulesets/basic.xml</ruleset>
<ruleset>/rulesets/controversial.xml</ruleset>
</rulesets>
<format>xml</format>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.6.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clover-plugin</artifactId>
<version>2.4</version>
</plugin>
<!-- One of these plugins seem to generates an error, when executing the release:perform <plugin>
<groupId>org.codehaus.mojo</groupId> <artifactId>scmchangelog-maven-plugin</artifactId> <version>1.3</version>
</plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId>
<version>2.1</version> </plugin> -->
<!-- <plugin> Needs org.apache.maven.shared:maven-doxia-tools:jar:1.0.2, whose download doesn't
work, from my network ! <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId>
<version>2.3</version> </plugin> -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>1.4.1</version>
</dependency>
<!-- classes netscape.javascript.* -->
<dependency>
<groupId>com.sun.runtime</groupId>
<artifactId>java-plugin</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>${java.home}/lib/plugin.jar</systemPath>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.13</version>
<scope>test</scope>
</dependency>
<!-- Useless for the core applet. Used only to compile the jupload-translation plugin -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>wjhk.jupload</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<!-- Bug with m2e : copy-dependencies generate an error message. This is a workaround. -->
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[2.0,)</versionRange>
<goals>
<goal>copy-dependencies</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.0-beta-4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>https://jupload.svn.sourceforge.net/svnroot/jupload/tags
</tagBase>
<preparationGoals>clean site verify</preparationGoals>
<goals>site deploy</goals>
<releaseProfiles>generate-jupload-release</releaseProfiles>
<!-- jupload.scm.username and jupload.scm.password should be defined in the 'jupload' Profile, in
your settings.xml -->
<username>${jupload.scm.username}</username>
<password>${jupload.scm.password}</password>
</configuration>
</plugin>
<plugin>
<!-- mvn ant:ant generates the build.xml for this project Caution: this will export the jupload.keystore.filename
and jupload.keystore.storepass properties, from your settings.xml to the build.properties file. MUST
BE CLEANED BEFORE COMMIT ! (because it contains your passwords) -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ant-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
<revisionOnScmFailure>true</revisionOnScmFailure>
<locale>en</locale>
<useLastCommittedRevision>true</useLastCommittedRevision>
</configuration>
</plugin>
<plugin>
<!-- Get the dependencies jar files to a common place, for jar signing -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies-site</id>
<phase>site</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeScope>runtime</includeScope>
<outputDirectory>${project.build.directory}/site
</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<!-- JUpload requires applet signing. The properties to sign the applet must be stored in your
local settings.xml, under the jupload profile. See documentation for details -->
<id>sign-artefact</id>
<phase>package</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<alias>${jupload.keystore.alias}</alias>
<keystore>${jupload.keystore.filename}</keystore>
<storepass>${jupload.keystore.storepass}</storepass>
<removeExistingSignatures>true</removeExistingSignatures>
</configuration>
</execution>
<execution>
<!-- JUpload web site requires that all dependencies are signed with the same key, in order to
work properly -->
<id>sign-site</id>
<phase>site</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<alias>${jupload.keystore.alias}</alias>
<keystore>${jupload.keystore.filename}</keystore>
<storepass>${jupload.keystore.storepass}</storepass>
<removeExistingSignatures>true</removeExistingSignatures>
<archiveDirectory>${project.build.directory}/site
</archiveDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>install-copy-resources-jupload-jar</id>
<phase>install</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/site
</outputDirectory>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>jar</nonFilteredFileExtension>
</nonFilteredFileExtensions>
<resources>
<resource>
<directory>${project.build.directory}</directory>
<includes>
<include>*.jar</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>site-copy-resources-jupload-jar</id>
<phase>site</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/site
</outputDirectory>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>jar</nonFilteredFileExtension>
</nonFilteredFileExtensions>
<resources>
<resource>
<directory>${project.build.directory}</directory>
<includes>
<include>*.jar</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.0.1</version>
<configuration>
<inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding>
<!-- templateFile>src/site/site.vm</templateFile -->
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<!-- We have no Maven repository yet. So release are to be deployed on a local repository.... TODO:
have a real repository. Publish to Maven Central Repository? -->
<repository>
<id>${jupload.distributionManagement.repository.id}</id>
<name>${jupload.distributionManagement.repository.name}</name>
<url>${jupload.distributionManagement.repository.url}</url>
</repository>
<snapshotRepository>
<id>${jupload.distributionManagement.snapshotRepository.id}</id>
<name>${jupload.distributionManagement.snapshotRepository.name}
</name>
<url>${jupload.distributionManagement.snapshotRepository.url}</url>
</snapshotRepository>
<!-- The next tag allows to easily update the JUpload site, hosted by sourceforge.net -->
<site>
<id>jupload.website</id>
<name>JUpload Website</name>
<url>sftp://web.sourceforge.net/home/groups/j/ju/jupload/htdocs/</url>
</site>
</distributionManagement>
<properties>
<!-- All these properties can (should) be overriden in your settings.xml file. See the http://jupload.sourceforge.net/howto-compile.html
page for details -->
<!-- The next parameters are mandatory, for applet signing. Default behavior, in the pom, is to generate
these parameters, if you didn't define them in your settings.xml. So, they are optional in your settings.
If you don't define them, JUpload will use a generated keystore, with a certificate generated at compile
time. BUT: if you want to PUBLISH the applet to real life users, you SHOULD define them. See the howto-compile
on the JUpload site, for details -->
<jupload.keystore.alias>jupload</jupload.keystore.alias>
<jupload.keystore.filename>target/keystore</jupload.keystore.filename>
<jupload.keystore.storepass>jupload-demo-pass
</jupload.keystore.storepass>
<!-- The next parameters are mandatory only for publishing Maven artefact to your repositories, that
is: when you use the "deploy" maven goal. Useless when you 'just' compile, that is: when you use the
'install' maven goal. There is currently no 'Central' jupload repository -->
<jupload.distributionManagement.repository.id>Id_for_your_main_repository
</jupload.distributionManagement.repository.id>
<jupload.distributionManagement.repository.name>Name_for_your_main_repository
</jupload.distributionManagement.repository.name>
<jupload.distributionManagement.repository.url>URL_for_your_main_repository
</jupload.distributionManagement.repository.url>
<jupload.distributionManagement.snapshotRepository.id>Id_for_your_main_snapshotRepository
</jupload.distributionManagement.snapshotRepository.id>
<jupload.distributionManagement.snapshotRepository.name>Name_for_your_main_snapshotRepository
</jupload.distributionManagement.snapshotRepository.name>
<jupload.distributionManagement.snapshotRepository.url>URL_for_your_main_snapshotRepository
</jupload.distributionManagement.snapshotRepository.url>
<!-- The next parameters are mandatory only for PGP signing. PGP signing is used only when performing
a release, that is: when executing the goal release:perform Not used (so: optional) otherwise. PGP signing
is only used for developpers who would like to publish a new JUpload version to the Maven Central Repository.
For all other users, you can let skip to true. -->
<jupload.pgp.keyname>Your PGP key name</jupload.pgp.keyname>
<!-- The passphrase is optional: if not provided, it will be asked to the user -->
<jupload.pgp.passphrase>Your PGP passphrase</jupload.pgp.passphrase>
<!-- The next parameters are mandatory, only for use of the maven release plugin. Optionnal otherwise.
So for standard use of JUpload (without creating releases), you can let this parameter unchanged -->
<jupload.scm.username>Your SCM login</jupload.scm.username>
<jupload.scm.password>Your SCM password</jupload.scm.password>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<!-- Reporting: see the 'reporting' profile, here above. -->
</project>