Skip to content

Commit 45b1e3b

Browse files
author
Jeremie Guillemotte
committed
Initial revision
0 parents  commit 45b1e3b

File tree

80 files changed

+3066
-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.

80 files changed

+3066
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.git/
2+
target/

.project

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>easysoa-demo-pureAirFlowers-proxy</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<natures>
8+
</natures>
9+
</projectDescription>

pureAirFlowers-Release/.classpath

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java"/>
4+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/>
5+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
6+
<classpathentry kind="output" path="target/classes"/>
7+
</classpath>

pureAirFlowers-Release/.project

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>pureAirFlowers-Release</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.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Tue Apr 26 17:06:45 CEST 2011
2+
eclipse.preferences.version=1
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
4+
org.eclipse.jdt.core.compiler.compliance=1.5
5+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
6+
org.eclipse.jdt.core.compiler.source=1.5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#Tue Apr 26 17:06:45 CEST 2011
2+
activeProfiles=
3+
eclipse.preferences.version=1
4+
resolveWorkspaceProjects=true
5+
version=1

pureAirFlowers-Release/pom.xml

+153
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
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+
5+
<groupId>com.openwide</groupId>
6+
<artifactId>pureAirFlowers-Release</artifactId>
7+
<packaging>pom</packaging>
8+
<version>1.0-SNAPSHOT</version>
9+
10+
<name>pureAirFlowers-Release</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<!--<parent>
14+
<groupId>org.ow2.frascati.examples</groupId>
15+
<artifactId>parent</artifactId>
16+
<version>1.4-SNAPSHOT</version>
17+
</parent>-->
18+
19+
<parent>
20+
<groupId>org.ow2.frascati</groupId>
21+
<artifactId>parent</artifactId>
22+
<version>1.4-SNAPSHOT</version>
23+
</parent>
24+
25+
<!-- Properties -->
26+
<properties>
27+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28+
<!-- Dependencies versions -->
29+
<osoa.version>1.0</osoa.version>
30+
<aopalliance.version>1.0</aopalliance.version>
31+
<jsr311.version>1.1.1</jsr311.version>
32+
<frascati.version>1.4-SNAPSHOT</frascati.version>
33+
<frascati.tinfi.runtime.version>1.4.4</frascati.tinfi.runtime.version>
34+
<frascati.tinfi.oo.version>1.4.4</frascati.tinfi.oo.version>
35+
<!-- Composite file to run -->
36+
<!--<composite.file>RestSoapProxy</composite.file>-->
37+
<!--<composite.file>RestSoapProxy_withIntents</composite.file>-->
38+
<!-- Not used -->
39+
<!--<service.name>ProxyService</service.name>-->
40+
<!--<method.name>redirectRequests</method.name>-->
41+
</properties>
42+
43+
<dependencyManagement>
44+
<dependencies>
45+
46+
<dependency>
47+
<groupId>org.ow2.frascati</groupId>
48+
<artifactId>frascati-runtime-factory</artifactId>
49+
<version>${frascati.version}</version>
50+
</dependency>
51+
52+
<dependency>
53+
<groupId>org.ow2.frascati</groupId>
54+
<artifactId>frascati-binding-ws</artifactId>
55+
<version>${frascati.version}</version>
56+
</dependency>
57+
58+
<!-- dependency>
59+
<groupId>org.ow2.frascati</groupId>
60+
<artifactId>frascati-explorer-api</artifactId>
61+
<version>${frascati.version}</version>
62+
</dependency -->
63+
64+
<!-- Test -->
65+
<dependency>
66+
<groupId>junit</groupId>
67+
<artifactId>junit</artifactId>
68+
<version>4.6</version>
69+
<scope>test</scope>
70+
</dependency>
71+
</dependencies>
72+
</dependencyManagement>
73+
74+
<!-- Modules -->
75+
<modules>
76+
<module>../pureAirFlowers-autoRearmFuseIntent</module>
77+
<module>../pureAirFlowers-logIntent</module>
78+
<module>../pureAirFlowers-ServiceUiScaffolderProxy</module>
79+
<module>../pureAirFlowers-buildAll</module>
80+
</modules>
81+
82+
<!-- Plugin management -->
83+
<!--<build>
84+
<pluginManagement>
85+
<plugins>
86+
Compile with Java 1.6
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-compiler-plugin</artifactId>
90+
<configuration>
91+
<source>1.6</source>
92+
<target>1.6</target>
93+
</configuration>
94+
</plugin>
95+
96+
Used to create a binary distribution.
97+
<plugin>
98+
<artifactId>maven-assembly-plugin</artifactId>
99+
<groupId>org.apache.maven.plugins</groupId>
100+
<version>2.2-beta-3</version>
101+
<configuration>
102+
This is where we use our shared assembly descriptor
103+
<descriptorRefs>
104+
<descriptorRef>bin</descriptorRef>
105+
</descriptorRefs>
106+
</configuration>
107+
</plugin>
108+
109+
</plugins>
110+
</pluginManagement>
111+
</build>-->
112+
113+
114+
115+
<!-- -->
116+
<build>
117+
<plugins>
118+
<plugin>
119+
<groupId>org.apache.maven.plugins</groupId>
120+
<artifactId>maven-compiler-plugin</artifactId>
121+
<configuration>
122+
<source>1.6</source>
123+
<target>1.6</target>
124+
</configuration>
125+
</plugin>
126+
<!--<plugin>
127+
<artifactId>maven-assembly-plugin</artifactId>
128+
<executions>
129+
<execution>
130+
<id>create-executable-jar</id>
131+
<phase>package</phase>
132+
<goals>
133+
<goal>single</goal>
134+
</goals>
135+
<configuration>
136+
<overWriteReleases>true</overWriteReleases>
137+
<overWriteSnapshots>true</overWriteSnapshots>
138+
<descriptors>
139+
<descriptor>src/main/assembly/assembly.xml</descriptor>
140+
</descriptors>
141+
<archive>
142+
<manifest>
143+
<mainClass>pureairflowers.clients.PureAirFlowersServer</mainClass>
144+
</manifest>
145+
</archive>
146+
</configuration>
147+
</execution>
148+
</executions>
149+
</plugin>-->
150+
</plugins>
151+
</build>
152+
153+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
<assembly>
3+
<id>with-dep</id>
4+
<formats>
5+
<format>jar</format>
6+
</formats>
7+
<includeBaseDirectory>false</includeBaseDirectory>
8+
<dependencySets>
9+
<dependencySet>
10+
<!-- unpack les dépendances avant de les inclures dans le jar final de
11+
l'application -->
12+
<unpack>true</unpack>
13+
<scope>runtime</scope>
14+
<useProjectArtifact>false</useProjectArtifact>
15+
</dependencySet>
16+
</dependencySets>
17+
<moduleSets>
18+
<moduleSet>
19+
20+
<!-- Enable access to all projects in the current multimodule build! -->
21+
<!--<useAllReactorProjects>true</useAllReactorProjects> -->
22+
23+
<!-- Now, select which projects to include in this module-set. -->
24+
<includes>
25+
<include>com.openwide.sca.intents:autoRearmFuseIntent</include>
26+
<include>com.openwide.sca.intents:logIntent</include>
27+
<include>com.openwide.sca:proxy</include>
28+
<include>pureairflowers.clients:pureAirFlowerServer</include>
29+
</includes>
30+
<binaries>
31+
<outputDirectory></outputDirectory>
32+
<unpack>false</unpack>
33+
</binaries>
34+
</moduleSet>
35+
</moduleSets>
36+
</assembly>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>ServiceUiScaffolder</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+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#Fri Apr 08 10:25:13 CEST 2011
2+
eclipse.preferences.version=1
3+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
4+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
5+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6+
org.eclipse.jdt.core.compiler.compliance=1.6
7+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
8+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
9+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
10+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
11+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12+
org.eclipse.jdt.core.compiler.source=1.6

0 commit comments

Comments
 (0)