Skip to content
This repository was archived by the owner on Dec 31, 2018. It is now read-only.

Commit e2240bf

Browse files
committed
Version 2.0
1 parent 39cfbb4 commit e2240bf

File tree

9 files changed

+148
-250
lines changed

9 files changed

+148
-250
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target

ChangeLog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2007-12-08 Christos KK Loverdos <loverdos@gmail.com>
2+
* Release 2.0.0
3+
- Renamed org.ckkloverdos.bootstrap to org.ckkloverdos.jbootstrap.
4+
- Built by maven.

README.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Author: Christos KK Loverdos <loverdos@gmail.com>
2+
Blog: http://blog.ckkloverdos.com
23
URL: http://code.google.com/p/jbootstrap/
4+
M2Repo: http://ckkl-core.svn.sourceforge.net/svnroot/ckkl-core/m2repo
5+
6+
Please do NOT email bug reports or feature requests.
7+
8+
Built by Maven 2.0.7.
39

410
Have you been tired of continuously (re)adjusting the CLASSPATH when
511
developing a new application/library? Have you been tired of issuing
@@ -13,4 +19,7 @@ appropriate classloader and fire-up your application in a fraction of
1319
time.
1420

1521
Basic Usage:
16-
java -jar jbootstrap-x.y.z.jar -lib ./lib my.main.App arg1 arg2 ...
22+
java -jar jbootstrap-x.y.z.jar -lib ./lib my.main.App arg1 arg2 ...
23+
24+
In case your jars are in more than one directories:
25+
java -jar jbootstrap-x.y.z.jar -lib path-to-lib1 -lib path-to-lib2 my.main.App arg1 arg2 ...

ant-util.xml

-48
This file was deleted.

build.xml

-184
This file was deleted.

pom.xml

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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 &#169; 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>

src/main/assembly/assembly-all.xml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<assembly>
2+
<id>all</id>
3+
<formats>
4+
<format>tar.gz</format>
5+
</formats>
6+
<includeBaseDirectory>true</includeBaseDirectory>
7+
<fileSets>
8+
<fileSet>
9+
<includes>
10+
<include>README*</include>
11+
<include>LICENSE*</include>
12+
<include>ChangeLog*</include>
13+
</includes>
14+
</fileSet>
15+
16+
<fileSet>
17+
<directory>target</directory>
18+
<outputDirectory></outputDirectory>
19+
<includes>
20+
<include>*.jar</include>
21+
</includes>
22+
</fileSet>
23+
24+
<fileSet>
25+
<directory>target/site/apidocs</directory>
26+
<outputDirectory>/apidocs</outputDirectory>
27+
</fileSet>
28+
29+
<fileSet>
30+
<directory></directory>
31+
<outputDirectory>/src</outputDirectory>
32+
<includes>
33+
<include>src/**</include>
34+
<include>pom.xml</include>
35+
</includes>
36+
</fileSet>
37+
</fileSets>
38+
</assembly>

0 commit comments

Comments
 (0)