Skip to content

Commit a60cd66

Browse files
Add all
0 parents  commit a60cd66

File tree

204 files changed

+11711
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+11711
-0
lines changed

.classpath

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/havok-0.0.1-SNAPSHOT/WEB-INF/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/havok-0.0.1-SNAPSHOT/WEB-INF/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
26+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
27+
<attributes>
28+
<attribute name="maven.pomderived" value="true"/>
29+
</attributes>
30+
</classpathentry>
31+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
32+
<attributes>
33+
<attribute name="maven.pomderived" value="true"/>
34+
</attributes>
35+
</classpathentry>
36+
<classpathentry kind="output" path="target/havok-0.0.1-SNAPSHOT/WEB-INF/classes"/>
37+
</classpath>

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
/.settings
3+
/.svn

.project

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>havok</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.maven.ide.eclipse.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.m2e.core.maven2Builder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
</buildSpec>
24+
<natures>
25+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
26+
<nature>org.eclipse.jdt.core.javanature</nature>
27+
<nature>org.maven.ide.eclipse.maven2Nature</nature>
28+
</natures>
29+
</projectDescription>

li_formatter.xml

+269
Large diffs are not rendered by default.

pom.xml

+147
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
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/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>pl.poznan.ilim</groupId>
5+
<artifactId>havok</artifactId>
6+
<version>0.0.1-SNAPSHOT</version>
7+
<packaging>war</packaging>
8+
<name>Havok</name>
9+
<description>Simple asset tracking system</description>
10+
11+
<properties>
12+
<!-- convenience to define GWT version in one place -->
13+
<gwt.version>2.1.1</gwt.version>
14+
15+
<!-- tell the compiler we can use 1.6 -->
16+
<maven.compiler.source>1.6</maven.compiler.source>
17+
<maven.compiler.target>1.6</maven.compiler.target>
18+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
</properties>
20+
21+
<dependencies>
22+
23+
<!-- GWT dependencies (from central repo) -->
24+
<dependency>
25+
<groupId>com.google.gwt</groupId>
26+
<artifactId>gwt-servlet</artifactId>
27+
<version>${gwt.version}</version>
28+
<scope>runtime</scope>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.google.gwt</groupId>
32+
<artifactId>gwt-user</artifactId>
33+
<version>${gwt.version}</version>
34+
<scope>provided</scope>
35+
</dependency>
36+
37+
<!-- SmartGWT -->
38+
<dependency>
39+
<groupId>com.smartgwt</groupId>
40+
<artifactId>smartgwt</artifactId>
41+
<version>2.4</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>com.smartgwt</groupId>
45+
<artifactId>smartgwt-skins</artifactId>
46+
<version>2.4</version>
47+
</dependency>
48+
49+
<!-- test -->
50+
<dependency>
51+
<groupId>junit</groupId>
52+
<artifactId>junit</artifactId>
53+
<version>4.8.1</version>
54+
<scope>test</scope>
55+
</dependency>
56+
57+
<!-- others -->
58+
<dependency>
59+
<groupId>log4j</groupId>
60+
<artifactId>log4j</artifactId>
61+
<version>1.2.14</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>mysql</groupId>
65+
<artifactId>mysql-connector-java</artifactId>
66+
<version>5.1.13</version>
67+
</dependency>
68+
<dependency>
69+
<groupId>com.google.gwt.google-apis</groupId>
70+
<artifactId>gwt-visualization</artifactId>
71+
<version>1.0.2</version>
72+
</dependency>
73+
<dependency>
74+
<groupId>org.slf4j</groupId>
75+
<artifactId>slf4j-api</artifactId>
76+
<version>1.5.8</version>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.slf4j</groupId>
80+
<artifactId>slf4j-simple</artifactId>
81+
<version>1.5.8</version>
82+
</dependency>
83+
<dependency>
84+
<groupId>net.sf.gilead</groupId>
85+
<artifactId>adapter-core</artifactId>
86+
<version>1.3.2</version>
87+
</dependency>
88+
<dependency>
89+
<groupId>net.sf.gilead</groupId>
90+
<artifactId>adapter4gwt</artifactId>
91+
<version>1.3.2</version>
92+
</dependency>
93+
<dependency>
94+
<groupId>net.sf.gilead</groupId>
95+
<artifactId>gilead4gwt</artifactId>
96+
<version>1.3.2</version>
97+
</dependency>
98+
</dependencies>
99+
100+
<build>
101+
<outputDirectory>target/${project.artifactId}-${project.version}/WEB-INF/classes</outputDirectory>
102+
<plugins>
103+
<plugin>
104+
<groupId>org.codehaus.mojo</groupId>
105+
<artifactId>gwt-maven-plugin</artifactId>
106+
<version>2.1.0-1</version>
107+
<executions>
108+
<execution>
109+
<goals>
110+
<goal>compile</goal>
111+
</goals>
112+
</execution>
113+
</executions>
114+
<configuration>
115+
<runTarget>pl.poznan.ilim.havok.Havok/Havok.html</runTarget>
116+
<inplace>true</inplace>
117+
<warSourceDirectory>war</warSourceDirectory>
118+
<!-- <logLevel>INFO" -bindAddress 0.0.0.0 -logLevel "INFO</logLevel> -->
119+
</configuration>
120+
</plugin>
121+
<!-- If you want to use the target/web.xml file mergewebxml produces,
122+
tell the war plugin to use it. Also, exclude what you want from the final
123+
artifact here. -->
124+
<plugin>
125+
<groupId>org.apache.maven.plugins</groupId>
126+
<artifactId>maven-war-plugin</artifactId>
127+
<version>2.1.1</version>
128+
<configuration>
129+
<warSourceDirectory>war</warSourceDirectory>
130+
<webXml>war/WEB-INF/web.xml</webXml>
131+
<packagingExcludes>WEB-INF/web.xml</packagingExcludes>
132+
<warSourceExcludes>.gwt-tmp/**</warSourceExcludes>
133+
</configuration>
134+
</plugin>
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-compiler-plugin</artifactId>
138+
<version>2.3.1</version>
139+
<configuration>
140+
<source>${maven.compiler.source}</source>
141+
<target>${maven.compiler.target}</target>
142+
</configuration>
143+
</plugin>
144+
</plugins>
145+
</build>
146+
147+
</project>

src/.svn/all-wcprops

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
K 25
2+
svn:wc:ra_dav:version-url
3+
V 36
4+
/repos/!svn/ver/1285/havok/trunk/src
5+
END

src/.svn/entries

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
10
2+
3+
dir
4+
1285
5+
http://eridu.ilim.poznan.pl/repos/havok/trunk/src
6+
http://eridu.ilim.poznan.pl/repos
7+
8+
9+
10+
2011-03-21T21:12:25.441871Z
11+
1285
12+
piotrek
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
3ea55cbd-58c8-4677-b4ae-375f4ef9b1a8
28+
29+
test
30+
dir
31+
32+
main
33+
dir
34+

src/main/.svn/all-wcprops

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
K 25
2+
svn:wc:ra_dav:version-url
3+
V 41
4+
/repos/!svn/ver/1285/havok/trunk/src/main
5+
END

src/main/.svn/entries

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
10
2+
3+
dir
4+
1285
5+
http://eridu.ilim.poznan.pl/repos/havok/trunk/src/main
6+
http://eridu.ilim.poznan.pl/repos
7+
8+
9+
10+
2011-03-03T08:28:03.062964Z
11+
1276
12+
marcin
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
3ea55cbd-58c8-4677-b4ae-375f4ef9b1a8
28+
29+
java
30+
dir
31+
32+
resources
33+
dir
34+
35+
webapp
36+
dir
37+

src/main/java/.svn/all-wcprops

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
K 25
2+
svn:wc:ra_dav:version-url
3+
V 46
4+
/repos/!svn/ver/1285/havok/trunk/src/main/java
5+
END

src/main/java/.svn/entries

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
10
2+
3+
dir
4+
1285
5+
http://eridu.ilim.poznan.pl/repos/havok/trunk/src/main/java
6+
http://eridu.ilim.poznan.pl/repos
7+
8+
9+
10+
2011-03-03T08:28:03.062964Z
11+
1276
12+
marcin
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
3ea55cbd-58c8-4677-b4ae-375f4ef9b1a8
28+
29+
pl
30+
dir
31+

src/main/java/pl/.svn/all-wcprops

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
K 25
2+
svn:wc:ra_dav:version-url
3+
V 49
4+
/repos/!svn/ver/1285/havok/trunk/src/main/java/pl
5+
END

src/main/java/pl/.svn/entries

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
10
2+
3+
dir
4+
1285
5+
http://eridu.ilim.poznan.pl/repos/havok/trunk/src/main/java/pl
6+
http://eridu.ilim.poznan.pl/repos
7+
8+
9+
10+
2011-03-03T08:28:03.062964Z
11+
1276
12+
marcin
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
3ea55cbd-58c8-4677-b4ae-375f4ef9b1a8
28+
29+
poznan
30+
dir
31+
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
K 25
2+
svn:wc:ra_dav:version-url
3+
V 56
4+
/repos/!svn/ver/1285/havok/trunk/src/main/java/pl/poznan
5+
END

0 commit comments

Comments
 (0)