1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3
+ <modelVersion >4.0.0</modelVersion >
4
+
5
+ <groupId >org.ckkloverdos</groupId >
6
+ <artifactId >jbootstrap</artifactId >
7
+ <packaging >jar</packaging >
8
+ <version >2.0.0</version >
9
+ <name >jBootstrap</name >
10
+
11
+ <developers >
12
+ <developer >
13
+ <name >Christos KK Loverdos</name >
14
+ <id >loverdos</id >
15
+ <email >loverdos@gmail.com</email >
16
+ <timezone >+2</timezone >
17
+ </developer >
18
+ </developers >
19
+
20
+ <licenses >
21
+ <license >
22
+ <name >The Apache Software License, Version 2.0</name >
23
+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
24
+ <distribution >repo</distribution >
25
+ </license >
26
+ </licenses >
27
+
28
+ <build >
29
+ <defaultGoal >assembly:assembly</defaultGoal >
30
+ <plugins >
31
+ <plugin >
32
+ <artifactId >maven-assembly-plugin</artifactId >
33
+ <configuration >
34
+ <descriptors >
35
+ <descriptor >src/main/assembly/assembly-all.xml</descriptor >
36
+ </descriptors >
37
+ </configuration >
38
+ </plugin >
39
+
40
+ <plugin >
41
+ <artifactId >maven-clean-plugin</artifactId >
42
+ <configuration >
43
+ <verbose >true</verbose >
44
+ </configuration >
45
+ </plugin >
46
+
47
+ <plugin >
48
+ <artifactId >maven-javadoc-plugin</artifactId >
49
+ <configuration >
50
+ <verbose >false</verbose >
51
+ <bottom >Copyright © Christos KK Loverdos</bottom >
52
+ </configuration >
53
+ </plugin >
54
+
55
+ <plugin >
56
+ <artifactId >maven-compiler-plugin</artifactId >
57
+ <configuration >
58
+ <source >1.4</source >
59
+ <target >1.4</target >
60
+ <fork >true</fork >
61
+ <verbose >true</verbose >
62
+ <showWarnings >true</showWarnings >
63
+ <showDeprecation >true</showDeprecation >
64
+ </configuration >
65
+ </plugin >
66
+
67
+ <plugin >
68
+ <groupId >org.apache.maven.plugins</groupId >
69
+ <artifactId >maven-jar-plugin</artifactId >
70
+ <configuration >
71
+ <archive >
72
+ <manifestEntries >
73
+ <Main-class >org.ckkloverdos.jbootstrap.Main</Main-class >
74
+ <Specification-Vendor >Christos KK Loverdos</Specification-Vendor >
75
+ <Specification-Title >${pom.name} </Specification-Title >
76
+ <Specification-Version >${pom.version} </Specification-Version >
77
+ <Implementation-Vendor >Christos KK Loverdos</Implementation-Vendor >
78
+ <Implementation-Title >${pom.name} </Implementation-Title >
79
+ <Implementation-Version >${pom.version} </Implementation-Version >
80
+ </manifestEntries >
81
+ </archive >
82
+ </configuration >
83
+ </plugin >
84
+ </plugins >
85
+ </build >
86
+
87
+ <distributionManagement >
88
+ <repository >
89
+ <id >org.ckkloverdos.mavenrepo.local</id >
90
+ <url >file://C:/Projects/org.ckkloverdos.mavenrepo.local/m2repo</url >
91
+ </repository >
92
+ </distributionManagement >
93
+ </project >
0 commit comments