Skip to content
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Commit 445b988

Browse files
committed
initial checkin
1 parent 289274f commit 445b988

13 files changed

+440
-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/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/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.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
26+
<attributes>
27+
<attribute name="maven.pomderived" value="true"/>
28+
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
29+
</attributes>
30+
</classpathentry>
31+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
32+
<attributes>
33+
<attribute name="maven.pomderived" value="true"/>
34+
</attributes>
35+
</classpathentry>
36+
<classpathentry kind="output" path="target/classes"/>
37+
</classpath>

.project

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>swarm</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.jdt.core.javabuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.wst.validation.validationbuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
<buildCommand>
29+
<name>org.eclipse.m2e.core.maven2Builder</name>
30+
<arguments>
31+
</arguments>
32+
</buildCommand>
33+
</buildSpec>
34+
<natures>
35+
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
36+
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
37+
<nature>org.eclipse.jdt.core.javanature</nature>
38+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
39+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
40+
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
41+
</natures>
42+
</projectDescription>

.settings/.jsdtscope

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src/main/webapp"/>
4+
<classpathentry kind="src" path="target/m2e-wtp/web-resources"/>
5+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
6+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.WebProject">
7+
<attributes>
8+
<attribute name="hide" value="true"/>
9+
</attributes>
10+
</classpathentry>
11+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
12+
<classpathentry kind="output" path=""/>
13+
</classpath>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/main/resources=UTF-8
4+
encoding//src/test/java=UTF-8
5+
encoding//src/test/resources=UTF-8
6+
encoding/<project>=UTF-8

.settings/org.eclipse.jdt.core.prefs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.8
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
12+
org.eclipse.jdt.core.compiler.source=1.8

.settings/org.eclipse.m2e.core.prefs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1
+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
2+
<wb-module deploy-name="swarm">
3+
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
4+
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
5+
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
6+
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
7+
<dependent-module archiveName="wildfly-swarm-undertow-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-undertow/wildfly-swarm-undertow">
8+
<dependency-type>uses</dependency-type>
9+
</dependent-module>
10+
<dependent-module archiveName="wildfly-swarm-container-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-container/wildfly-swarm-container">
11+
<dependency-type>uses</dependency-type>
12+
</dependent-module>
13+
<dependent-module archiveName="wildfly-swarm-bootstrap-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-bootstrap/wildfly-swarm-bootstrap">
14+
<dependency-type>uses</dependency-type>
15+
</dependent-module>
16+
<dependent-module archiveName="wildfly-swarm-container-modules-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-container-modules/wildfly-swarm-container-modules">
17+
<dependency-type>uses</dependency-type>
18+
</dependent-module>
19+
<dependent-module archiveName="wildfly-swarm-undertow-modules-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-undertow-modules/wildfly-swarm-undertow-modules">
20+
<dependency-type>uses</dependency-type>
21+
</dependent-module>
22+
<dependent-module archiveName="wildfly-swarm-logging-modules-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-logging-modules/wildfly-swarm-logging-modules">
23+
<dependency-type>uses</dependency-type>
24+
</dependent-module>
25+
<dependent-module archiveName="wildfly-swarm-io-modules-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-io-modules/wildfly-swarm-io-modules">
26+
<dependency-type>uses</dependency-type>
27+
</dependent-module>
28+
<dependent-module archiveName="wildfly-swarm-ee-modules-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-ee-modules/wildfly-swarm-ee-modules">
29+
<dependency-type>uses</dependency-type>
30+
</dependent-module>
31+
<dependent-module archiveName="wildfly-swarm-logging-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-logging/wildfly-swarm-logging">
32+
<dependency-type>uses</dependency-type>
33+
</dependent-module>
34+
<dependent-module archiveName="wildfly-swarm-io-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-io/wildfly-swarm-io">
35+
<dependency-type>uses</dependency-type>
36+
</dependent-module>
37+
<dependent-module archiveName="wildfly-swarm-ee-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-ee/wildfly-swarm-ee">
38+
<dependency-type>uses</dependency-type>
39+
</dependent-module>
40+
<dependent-module archiveName="wildfly-swarm-naming-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-naming/wildfly-swarm-naming">
41+
<dependency-type>uses</dependency-type>
42+
</dependent-module>
43+
<dependent-module archiveName="wildfly-swarm-naming-modules-1.0.0.Alpha5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/wildfly-swarm-naming-modules/wildfly-swarm-naming-modules">
44+
<dependency-type>uses</dependency-type>
45+
</dependent-module>
46+
<property name="context-root" value="swarm"/>
47+
<property name="java-output-path" value="/swarm/target/classes"/>
48+
</wb-module>
49+
</project-modules>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<faceted-project>
3+
<fixed facet="wst.jsdt.web"/>
4+
<installed facet="wst.jsdt.web" version="1.0"/>
5+
<installed facet="jst.web" version="3.1"/>
6+
<installed facet="java" version="1.8"/>
7+
</faceted-project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.eclipse.wst.jsdt.launching.baseBrowserLibrary
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Window
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
disabled=06target
2+
eclipse.preferences.version=1

pom.xml

+173
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
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>com.sibvisions.demos</groupId>
5+
<artifactId>swarm</artifactId>
6+
<version>0.0.1-SNAPSHOT</version>
7+
<packaging>war</packaging>
8+
9+
<properties>
10+
<swarm.version>1.0.0.Alpha5-SNAPSHOT</swarm.version>
11+
<maven.min.version>3.2.1</maven.min.version>
12+
13+
<maven.compiler.target>1.8</maven.compiler.target>
14+
<maven.compiler.source>1.8</maven.compiler.source>
15+
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
</properties>
18+
19+
<repositories>
20+
<repository>
21+
<id>maven-restlet</id>
22+
<name>Public online Restlet repository</name>
23+
<url>http://maven.restlet.org</url>
24+
</repository>
25+
<!--
26+
<repository>
27+
<id>sonatype-nexus-snapshots</id>
28+
<name>Sonatype Snapshots</name>
29+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
30+
</repository>
31+
-->
32+
</repositories>
33+
34+
<dependencies>
35+
<dependency>
36+
<groupId>org.wildfly.swarm</groupId>
37+
<artifactId>wildfly-swarm-undertow</artifactId>
38+
<version>${swarm.version}</version>
39+
</dependency>
40+
<dependency>
41+
<groupId>com.sibvisions.vaadin</groupId>
42+
<artifactId>jvxvaadin-server</artifactId>
43+
<version>1.3</version>
44+
<exclusions>
45+
<exclusion>
46+
<artifactId>jackson-core-asl</artifactId>
47+
<groupId>org.codehaus.jackson</groupId>
48+
</exclusion>
49+
<exclusion>
50+
<artifactId>jackson-mapper-asl</artifactId>
51+
<groupId>org.codehaus.jackson</groupId>
52+
</exclusion>
53+
</exclusions>
54+
</dependency>
55+
<dependency>
56+
<groupId>javax.servlet</groupId>
57+
<artifactId>servlet-api</artifactId>
58+
<version>2.4</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>commons-fileupload</groupId>
62+
<artifactId>commons-fileupload</artifactId>
63+
<version>1.2.2</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.fasterxml.jackson.core</groupId>
67+
<artifactId>jackson-core</artifactId>
68+
<version>2.4.0</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>com.fasterxml.jackson.core</groupId>
72+
<artifactId>jackson-annotations</artifactId>
73+
<version>2.4.0</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>com.fasterxml.jackson.core</groupId>
77+
<artifactId>jackson-databind</artifactId>
78+
<version>2.4.0</version>
79+
</dependency>
80+
<dependency>
81+
<groupId>com.fasterxml.jackson.dataformat</groupId>
82+
<artifactId>jackson-dataformat-smile</artifactId>
83+
<version>2.4.0</version>
84+
</dependency>
85+
<dependency>
86+
<groupId>com.fasterxml.jackson.dataformat</groupId>
87+
<artifactId>jackson-dataformat-csv</artifactId>
88+
<version>2.4.0</version>
89+
</dependency>
90+
<dependency>
91+
<groupId>com.fasterxml.jackson.dataformat</groupId>
92+
<artifactId>jackson-dataformat-xml</artifactId>
93+
<version>2.4.0</version>
94+
</dependency>
95+
<dependency>
96+
<groupId>com.fasterxml.jackson.dataformat</groupId>
97+
<artifactId>jackson-dataformat-yaml</artifactId>
98+
<version>2.4.0</version>
99+
</dependency>
100+
<dependency>
101+
<groupId>com.fasterxml.jackson.module</groupId>
102+
<artifactId>jackson-module-jsonSchema</artifactId>
103+
<version>2.4.0</version>
104+
</dependency>
105+
<dependency>
106+
<groupId>com.fasterxml.jackson.module</groupId>
107+
<artifactId>jackson-module-jaxb-annotations</artifactId>
108+
<version>2.4.0</version>
109+
</dependency>
110+
<dependency>
111+
<groupId>javax.mail</groupId>
112+
<artifactId>javax.mail-api</artifactId>
113+
<version>1.5.4</version>
114+
</dependency>
115+
<dependency>
116+
<groupId>javax.activation</groupId>
117+
<artifactId>activation</artifactId>
118+
<version>1.1.1</version>
119+
</dependency>
120+
<dependency>
121+
<groupId>org.restlet.jee</groupId>
122+
<artifactId>org.restlet</artifactId>
123+
<version>2.3.2</version>
124+
</dependency>
125+
<dependency>
126+
<groupId>org.restlet.jee</groupId>
127+
<artifactId>org.restlet.ext.jackson</artifactId>
128+
<version>2.3.2</version>
129+
</dependency>
130+
<dependency>
131+
<groupId>org.restlet.jee</groupId>
132+
<artifactId>org.restlet.ext.servlet</artifactId>
133+
<version>2.3.2</version>
134+
</dependency>
135+
136+
<dependency>
137+
<groupId>org.jboss.msc</groupId>
138+
<artifactId>jboss-msc</artifactId>
139+
<version>1.2.6.Final</version>
140+
</dependency>
141+
<dependency>
142+
<groupId>org.jboss.spec.javax.sql</groupId>
143+
<artifactId>jboss-javax-sql-api_7.0_spec</artifactId>
144+
<version>1.1.0.Final</version>
145+
</dependency>
146+
147+
</dependencies>
148+
149+
<build>
150+
<plugins>
151+
<plugin>
152+
<artifactId>maven-war-plugin</artifactId>
153+
<version>2.6</version>
154+
<configuration>
155+
<failOnMissingWebXml>false</failOnMissingWebXml>
156+
</configuration>
157+
</plugin>
158+
<plugin>
159+
<groupId>org.wildfly.swarm</groupId>
160+
<artifactId>wildfly-swarm-plugin</artifactId>
161+
<version>${swarm.version}</version>
162+
<executions>
163+
<execution>
164+
<goals>
165+
<goal>package</goal>
166+
</goals>
167+
</execution>
168+
</executions>
169+
</plugin>
170+
</plugins>
171+
</build>
172+
173+
</project>

0 commit comments

Comments
 (0)