Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 354781
Collapse All | Expand All

(-)a/releng/org.eclipse.rap.releng/pom.xml (+188 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- Copyright (C) 2011, EclipseSource and others All rights reserved. This 
3
	program and the accompanying materials are made available under the terms 
4
	of the Eclipse Public License v1.0 which accompanies this distribution, and 
5
	is available at http://www.eclipse.org/legal/epl-v10.html -->
6
7
<project
8
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
9
	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
10
	<modelVersion>4.0.0</modelVersion>
11
12
	<prerequisites>
13
		<maven>3.0</maven>
14
	</prerequisites>
15
16
	<groupId>org.eclipse.rap</groupId>
17
	<artifactId>org.eclipse.rap.parent</artifactId>
18
	<packaging>pom</packaging>
19
20
	<name>org.eclipse.rap</name>
21
	<description>org.eclise.rap</description>
22
	<version>1.5.0-SNAPSHOT</version>
23
24
	<properties>
25
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26
		<tycho-version>0.12.0</tycho-version>
27
28
		<h2.version>1.1.117</h2.version>
29
		<jetty.version>7.4.2.v20110526</jetty.version>
30
31
		<tomcat.version>7.0.12</tomcat.version>
32
	</properties>
33
34
	<modules>
35
		<module>../../runtime.rwt/org.eclipse.rap.rwt</module>
36
		<module>../../runtime.rwt/org.eclipse.rap.rwt.osgi</module>
37
38
		<module>../../runtime.rwt.test/org.eclipse.rap.rwt.testfixture</module>
39
		<module>../../runtime.rwt.test/org.eclipse.rap.rwt.test</module>
40
41
<!-- 
42
		<module>../../runtime.ui/org.eclipse.rap.jface</module>
43
		<module>../../runtime.ui/org.eclipse.rap.jface.databinding</module>
44
45
		<module>../../runtime.ui/org.eclipse.rap.ui.workbench</module>
46
		<module>../../runtime.ui/org.eclipse.rap.ui</module>
47
48
		<module>../../runtime.rwt.test/org.eclipse.rap.rwt.cluster.testfixture</module>
49
		<module>../../runtime.rwt.test/org.eclipse.rap.rwt.cluster.testfixture.test</module> 
50
 -->
51
52
<!-- 
53
		<module>../org.eclipse.rap.feature</module>
54
		<module>../org.eclipse.rap.runtime.feature</module>
55
56
57
		<module>../../runtime.rwt.test/org.eclipse.rap.rwt.cluster.test</module>
58
59
		<module>../../runtime.rwt/org.eclipse.rap.rwt.aspects</module>
60
61
		<module>../org.eclipse.rap.cluster-feature</module>
62
 -->
63
<!-- 
64
		<module>../../runtime.rwt/org.eclipse.rap.rwt.repository</module>
65
 -->
66
	</modules>
67
68
	<build>
69
		<plugins>
70
			<plugin>
71
				<groupId>org.eclipse.tycho</groupId>
72
				<artifactId>tycho-maven-plugin</artifactId>
73
				<version>${tycho-version}</version>
74
				<extensions>true</extensions>
75
			</plugin>
76
		</plugins>
77
	</build>
78
79
	<repositories>
80
		<repository>
81
			<id>runtime</id>
82
			<layout>p2</layout>
83
<!-- 
84
			<url>file:///Users/fluffi/Projects/Sovereign/scm-repos/org.eclipse.rap.UPSTREAM/releng/org.eclipse.rap.platform.repository/target/repository</url>
85
 -->
86
			<url>http://www.so.in.tum.de/~jeick/platform/site</url>
87
		</repository>
88
	</repositories>
89
90
	<dependencyManagement>
91
		<dependencies>
92
			<dependency>
93
				<groupId>junit</groupId>
94
				<artifactId>junit</artifactId>
95
				<version>3.8.2</version>
96
			</dependency>
97
			<dependency>
98
				<groupId>org.mockito</groupId>
99
				<artifactId>mockito-core</artifactId>
100
				<version>1.8.5</version>
101
			</dependency>
102
103
			<dependency>
104
				<groupId>org.eclipse.rap</groupId>
105
				<artifactId>org.eclipse.rap.rwt</artifactId>
106
				<version>${project.version}</version>
107
			</dependency>
108
			<dependency>
109
				<groupId>org.eclipse.rap</groupId>
110
				<artifactId>org.eclipse.rap.rwt.testfixture</artifactId>
111
				<version>${project.version}</version>
112
			</dependency>
113
			<dependency>
114
				<groupId>org.eclipse.rap</groupId>
115
				<artifactId>org.eclipse.rap.rwt.cluster.testfixture</artifactId>
116
				<version>${project.version}</version>
117
			</dependency>
118
			<dependency>
119
				<groupId>org.eclipse.rap</groupId>
120
				<artifactId>org.eclipse.rap.rwt.cluster.test</artifactId>
121
				<version>${project.version}</version>
122
			</dependency>
123
			<dependency>
124
				<groupId>org.eclipse.rap</groupId>
125
				<artifactId>org.eclipse.rap.rwt.cluster</artifactId>
126
				<version>${project.version}</version>
127
			</dependency>
128
129
			<dependency>
130
				<groupId>org.apache.geronimo.specs</groupId>
131
				<artifactId>geronimo-servlet_3.0_spec</artifactId>
132
				<version>1.0</version>
133
			</dependency>
134
			<!-- Jetty plus H2 -->
135
			<dependency>
136
				<groupId>com.h2database</groupId>
137
				<artifactId>h2</artifactId>
138
				<version>${h2.version}</version>
139
			</dependency>
140
			<dependency>
141
				<groupId>org.eclipse.jetty</groupId>
142
				<artifactId>jetty-server</artifactId>
143
				<version>${jetty.version}</version>
144
			</dependency>
145
			<dependency>
146
				<groupId>org.eclipse.jetty</groupId>
147
				<artifactId>jetty-servlet</artifactId>
148
				<version>${jetty.version}</version>
149
			</dependency>
150
			<dependency>
151
				<groupId>org.eclipse.jetty</groupId>
152
				<artifactId>jetty-util</artifactId>
153
				<version>${jetty.version}</version>
154
			</dependency>
155
			<!-- Tomcat -->
156
			<dependency>
157
				<groupId>org.apache.coyote</groupId>
158
				<artifactId>com.springsource.org.apache.coyote</artifactId>
159
				<version>${tomcat.version}</version>
160
			</dependency>
161
			<dependency>
162
				<groupId>org.apache.tomcat</groupId>
163
				<artifactId>com.springsource.org.apache.tomcat.api</artifactId>
164
				<version>${tomcat.version}</version>
165
			</dependency>
166
			<dependency>
167
				<groupId>org.apache.tomcat</groupId>
168
				<artifactId>com.springsource.org.apache.tomcat.util</artifactId>
169
				<version>${tomcat.version}</version>
170
			</dependency>
171
			<dependency>
172
				<groupId>org.apache.catalina</groupId>
173
				<artifactId>com.springsource.org.apache.catalina</artifactId>
174
				<version>${tomcat.version}</version>
175
			</dependency>
176
			<dependency>
177
				<groupId>org.apache.catalina</groupId>
178
				<artifactId>com.springsource.org.apache.catalina.ha</artifactId>
179
				<version>${tomcat.version}</version>
180
			</dependency>
181
			<dependency>
182
				<groupId>org.apache.catalina</groupId>
183
				<artifactId>com.springsource.org.apache.catalina.tribes</artifactId>
184
				<version>${tomcat.version}</version>
185
			</dependency>
186
		</dependencies>
187
	</dependencyManagement>
188
</project>
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/pom.xml (+125 lines)
Added Link Here
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
	<parent>
6
		<groupId>org.eclipse.rap</groupId>
7
		<artifactId>org.eclipse.rap.parent</artifactId>
8
		<version>1.5.0-SNAPSHOT</version>
9
		<relativePath>../../releng/org.eclipse.rap.releng/pom.xml</relativePath>
10
	</parent>
11
12
	<groupId>org.eclipse.rap</groupId>
13
	<artifactId>org.eclipse.rap.rwt.test</artifactId>
14
	<version>1.5.0-SNAPSHOT</version>
15
	<name>org.eclipse.rap.rwt.test</name>
16
	<description>org.eclipse.rap.rwt.test</description>
17
18
	<build>
19
		<testSourceDirectory>src</testSourceDirectory>
20
		<testResources>
21
			<!-- does not work as expected. -> created resource directory. <testResource> 
22
				<directory>src</directory> <includes> <include>**/*.js</include> </includes> 
23
				</testResource> -->
24
			<testResource>
25
				<directory>resources</directory>
26
				<includes>
27
					<include>**/*.properties</include>
28
					<include>**/*.js</include>
29
					<include>**/*.gif</include>
30
				</includes>
31
			</testResource>
32
		</testResources>
33
		<plugins>
34
			<plugin>
35
				<!-- Tycho Projekte verwenden osgi compiler und osgi surefire, daher 
36
					sind die beiden plugins händisch eingefügt -->
37
				<groupId>org.apache.maven.plugins</groupId>
38
				<artifactId>maven-compiler-plugin</artifactId>
39
				<version>2.3.2</version>
40
				<executions>
41
					<execution>
42
						<id>compile-tests</id>
43
						<phase>test-compile</phase>
44
						<goals>
45
							<goal>testCompile</goal>
46
						</goals>
47
					</execution>
48
				</executions>
49
			</plugin>
50
51
			<plugin>
52
				<groupId>org.apache.maven.plugins</groupId>
53
				<artifactId>maven-surefire-plugin</artifactId>
54
				<version>2.8.1</version>
55
				<configuration>
56
					<excludes>
57
						<exclude>**/RWTHostTestSuite.java</exclude>
58
					</excludes>
59
					<!-- PDE and Tycho don't work together in current pom.xml -->
60
					<testFailureIgnore>true</testFailureIgnore>
61
					<additionalClasspathElements>
62
						<additionalClasspathElement>${basedir}/lib/resource_manager_test.jar</additionalClasspathElement>
63
					</additionalClasspathElements>
64
				</configuration>
65
				<executions>
66
					<execution>
67
						<id>test</id>
68
						<phase>test</phase>
69
						<goals>
70
							<goal>test</goal>
71
						</goals>
72
					</execution>
73
				</executions>
74
			</plugin>
75
		</plugins>
76
	</build>
77
78
	<dependencies>
79
		<dependency>
80
			<groupId>junit</groupId>
81
			<artifactId>junit</artifactId>
82
			<version>3.8.2</version>
83
			<scope>test</scope>
84
		</dependency>
85
		<dependency>
86
			<groupId>org.eclipse.rap</groupId>
87
			<artifactId>org.eclipse.rap.rwt</artifactId>
88
			<version>1.5.0-SNAPSHOT</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>org.eclipse.rap</groupId>
92
			<artifactId>org.eclipse.rap.rwt.testfixture</artifactId>
93
			<version>1.5.0-SNAPSHOT</version>
94
			<scope>test</scope>
95
		</dependency>
96
		<dependency>
97
			<groupId>javax.servlet</groupId>
98
			<artifactId>servlet-api</artifactId>
99
			<version>2.5</version>
100
		</dependency>
101
		<dependency>
102
			<groupId>org.mockito</groupId>
103
			<artifactId>mockito-core</artifactId>
104
		</dependency>
105
		<dependency>
106
			<groupId>org.json</groupId>
107
			<artifactId>com.springsource.org.json</artifactId>
108
			<version>1.0.0</version>
109
			<scope>test</scope>
110
		</dependency>
111
	</dependencies>
112
113
	<repositories>
114
		<repository>
115
			<id>com.springsource.repository.bundles.release</id>
116
			<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
117
			<url>http://repository.springsource.com/maven/bundles/release</url>
118
		</repository>
119
		<repository>
120
			<id>com.springsource.repository.bundles.external</id>
121
			<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
122
			<url>http://repository.springsource.com/maven/bundles/external</url>
123
		</repository>
124
	</repositories>
125
</project>
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/incomplete_messages.properties (+11 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2009 EclipseSource.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     EclipseSource - initial API and implementation
10
################################################################################
11
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/internal/resources/iso-resource.js (+9 lines)
Added Link Here
1
// ÄÖÜäöüß
2
function doMouseOver( id, set ) {
3
  document.getElementById( id + '_img' ).src = set + '/hover.gif';
4
}
5
6
function doMouseOut( id, set ) {
7
  document.getElementById( id + '_img' ).src = set + '/enabled.gif';
8
}
9
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/internal/resources/resourcetest1.js (+1 lines)
Added Link Here
1
// no javascript content, file exists for testing purpose only
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/internal/resources/utf-8-resource.js (+9 lines)
Added Link Here
1
// ÄÖÜäöüß
2
function doMouseOver( id, set ) {
3
  document.getElementById( id + '_img' ).src = set + '/hover.gif';
4
}
5
6
function doMouseOut( id, set ) {
7
  document.getElementById( id + '_img' ).src = set + '/enabled.gif';
8
}
9
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/internal/service/log-content.properties (+12 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
org.eclipse.rwt.internal.service.LifeCycleServiceHandler.responseContent.level = FINE
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/internal/service/log-headers.properties (+23 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
################################################################################
13
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
14
# All rights reserved. This program and the accompanying materials
15
# are made available under the terms of the Eclipse Public License v1.0
16
# which accompanies this distribution, and is available at
17
# http://www.eclipse.org/legal/epl-v10.html
18
#
19
# Contributors:
20
#     Innoopract Informationssysteme GmbH - initial API and implementation
21
################################################################################
22
23
org.eclipse.rwt.internal.service.LifeCycleServiceHandler.requestHeaders.level = FINE
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/internal/service/log-params.properties (+12 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
org.eclipse.rwt.internal.service.LifeCycleServiceHandler.requestParams.level = FINE
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/internal/service/log-timestamp.properties (+23 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
################################################################################
13
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
14
# All rights reserved. This program and the accompanying materials
15
# are made available under the terms of the Eclipse Public License v1.0
16
# which accompanies this distribution, and is available at
17
# http://www.eclipse.org/legal/epl-v10.html
18
#
19
# Contributors:
20
#     Innoopract Informationssysteme GmbH - initial API and implementation
21
################################################################################
22
23
org.eclipse.rwt.internal.service.TimestampRequestServiceHandler.level = FINE
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/messages.properties (+12 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=My Message
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/messages_de.properties (+23 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
################################################################################
13
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
14
# All rights reserved. This program and the accompanying materials
15
# are made available under the terms of the Eclipse Public License v1.0
16
# which accompanies this distribution, and is available at
17
# http://www.eclipse.org/legal/epl-v10.html
18
#
19
# Contributors:
20
#     Innoopract Informationssysteme GmbH - initial API and implementation
21
################################################################################
22
23
MyMessage=Meine Nachricht
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/messages_it.properties (+12 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=Il mio messaggio
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/messages_utf8.properties (+12 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=My Message
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/messages_utf8_de.properties (+12 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=Meine Nachricht
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/resources/org/eclipse/rwt/messages_utf8_it.properties (+12 lines)
Added Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=Il mio messaggio
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/incomplete_messages.properties (-11 lines)
Lines 1-11 Link Here
1
################################################################################
2
# Copyright (c) 2009 EclipseSource.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     EclipseSource - initial API and implementation
10
################################################################################
11
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/internal/resources/iso-resource.js (-9 lines)
Lines 1-9 Link Here
1
// ÄÖÜäöüß
2
function doMouseOver( id, set ) {
3
  document.getElementById( id + '_img' ).src = set + '/hover.gif';
4
}
5
6
function doMouseOut( id, set ) {
7
  document.getElementById( id + '_img' ).src = set + '/enabled.gif';
8
}
9
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/internal/resources/resourcetest1.js (-1 lines)
Line 1 Link Here
1
// no javascript content, file exists for testing purpose only
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/internal/resources/utf-8-resource.js (-9 lines)
Lines 1-9 Link Here
1
// ÄÖÜäöüß
2
function doMouseOver( id, set ) {
3
  document.getElementById( id + '_img' ).src = set + '/hover.gif';
4
}
5
6
function doMouseOut( id, set ) {
7
  document.getElementById( id + '_img' ).src = set + '/enabled.gif';
8
}
9
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/internal/service/log-content.properties (-12 lines)
Lines 1-12 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
org.eclipse.rwt.internal.service.LifeCycleServiceHandler.responseContent.level = FINE
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/internal/service/log-headers.properties (-23 lines)
Lines 1-23 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
################################################################################
13
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
14
# All rights reserved. This program and the accompanying materials
15
# are made available under the terms of the Eclipse Public License v1.0
16
# which accompanies this distribution, and is available at
17
# http://www.eclipse.org/legal/epl-v10.html
18
#
19
# Contributors:
20
#     Innoopract Informationssysteme GmbH - initial API and implementation
21
################################################################################
22
23
org.eclipse.rwt.internal.service.LifeCycleServiceHandler.requestHeaders.level = FINE
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/internal/service/log-params.properties (-12 lines)
Lines 1-12 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
org.eclipse.rwt.internal.service.LifeCycleServiceHandler.requestParams.level = FINE
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/internal/service/log-timestamp.properties (-23 lines)
Lines 1-23 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
################################################################################
13
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
14
# All rights reserved. This program and the accompanying materials
15
# are made available under the terms of the Eclipse Public License v1.0
16
# which accompanies this distribution, and is available at
17
# http://www.eclipse.org/legal/epl-v10.html
18
#
19
# Contributors:
20
#     Innoopract Informationssysteme GmbH - initial API and implementation
21
################################################################################
22
23
org.eclipse.rwt.internal.service.TimestampRequestServiceHandler.level = FINE
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/messages.properties (-12 lines)
Lines 1-12 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=My Message
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/messages_de.properties (-23 lines)
Lines 1-23 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
################################################################################
13
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
14
# All rights reserved. This program and the accompanying materials
15
# are made available under the terms of the Eclipse Public License v1.0
16
# which accompanies this distribution, and is available at
17
# http://www.eclipse.org/legal/epl-v10.html
18
#
19
# Contributors:
20
#     Innoopract Informationssysteme GmbH - initial API and implementation
21
################################################################################
22
23
MyMessage=Meine Nachricht
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/messages_it.properties (-12 lines)
Lines 1-12 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=Il mio messaggio
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/messages_utf8.properties (-12 lines)
Lines 1-12 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=My Message
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/messages_utf8_de.properties (-12 lines)
Lines 1-12 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=Meine Nachricht
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.test/src/org/eclipse/rwt/messages_utf8_it.properties (-12 lines)
Lines 1-12 Link Here
1
################################################################################
2
# Copyright (c) 2007 Innoopract Informationssysteme GmbH.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     Innoopract Informationssysteme GmbH - initial API and implementation
10
################################################################################
11
12
MyMessage=Il mio messaggio
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/pom.xml (+66 lines)
Added Link Here
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
	<parent>
6
		<groupId>org.eclipse.rap</groupId>
7
		<artifactId>org.eclipse.rap.parent</artifactId>
8
		<version>1.5.0-SNAPSHOT</version>
9
		<relativePath>../../releng/org.eclipse.rap.releng/pom.xml</relativePath>
10
	</parent>
11
12
	<groupId>org.eclipse.rap</groupId>
13
	<artifactId>org.eclipse.rap.rwt.testfixture</artifactId>
14
	<version>1.5.0-SNAPSHOT</version>
15
	<name>org.eclipse.rap.rwt.testfixture</name>
16
	<description>org.eclipse.rap.rwt.testfixture</description>
17
18
	<build>
19
		<testSourceDirectory>src</testSourceDirectory>
20
		<resources>
21
			<resource>
22
				<directory>resources</directory>
23
				<includes>
24
					<include>**/*.properties</include>
25
					<include>**/*.js</include>
26
					<include>**/*.gif</include>
27
					<include>**/*.png</include>
28
					<include>**/*.xml</include>
29
					<include>**/*.css</include>
30
				</includes>
31
			</resource>
32
		</resources>
33
34
		<sourceDirectory>src</sourceDirectory>
35
		<plugins>
36
			<plugin>
37
				<groupId>org.apache.maven.plugins</groupId>
38
				<artifactId>maven-compiler-plugin</artifactId>
39
				<version>2.3.2</version>
40
				<configuration>
41
					<includes>
42
						<include>**/*.java</include>
43
					</includes>
44
				</configuration>
45
			</plugin>
46
		</plugins>
47
	</build>
48
49
	<dependencies>
50
		<dependency>
51
			<groupId>org.eclipse.rap</groupId>
52
			<artifactId>org.eclipse.rap.rwt</artifactId>
53
		</dependency>
54
55
		<dependency>
56
			<groupId>org.apache.geronimo.specs</groupId>
57
			<artifactId>geronimo-servlet_3.0_spec</artifactId>
58
		</dependency>
59
		<dependency>
60
			<groupId>org.json</groupId>
61
			<artifactId>json</artifactId>
62
			<version>20090211</version>
63
		</dependency>
64
	</dependencies>
65
66
</project>
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/resources/resources/theme/TestExample.css (+87 lines)
Added Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2008, 2009 Innoopract Informationssysteme GmbH.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 *
8
 * Contributors:
9
 *     Innoopract Informationssysteme GmbH - initial API and implementation
10
 *     EclipseSource - ongoing development
11
 ******************************************************************************/
12
13
/* Test RAP theme file */
14
15
/* All Widgets and Controls */
16
17
* {
18
  rwt-selectionmarker-color: #56a0ea;
19
}
20
21
/* Another rule with the same selector */
22
23
* {
24
  color: rgb( 112, 94, 66 );
25
  background-color: rgb( 255, 255, 255 );
26
  font: bold 12px Arial, Helvetica, sans-serif;
27
}
28
29
/* Wildcard type name with style flag */
30
31
*[BORDER] {
32
  border: 2px outset;
33
}
34
35
/* All white widgets */
36
List, Text, Tree, Table {
37
  background-color: white;
38
}
39
40
/* All gray widgets */
41
Button, Label, Composite {
42
  color: rgb( 39, 64, 139 );
43
  background-color: #c0c0c0;
44
}
45
46
/* Button */
47
48
Button {
49
  color: #705e42; /* 112, 94, 66 */
50
  padding: 12px 6px;
51
}
52
53
Button[PUSH], Button[TOGGLE] {
54
  background-color: #9dd0ea;
55
  border: 1px #1695d4;
56
  font: 11px 'Segoe UI', Tahoma, 'Lucida Sans Unicode';
57
}
58
59
Button[PUSH][BORDER], Button[TOGGLE][BORDER] {
60
  border: 2px #1695d4;
61
}
62
63
Button[PUSH]:pressed, Button[TOGGLE]:pressed {
64
  background-color: rgb( 227, 221, 158 );
65
}
66
67
/* Border radius */
68
Composite[BORDER] {
69
  color: #123456;
70
  border: 2px #1695d4;
71
  border-radius: 5px 10px;
72
}
73
74
/* Custom variant */
75
76
.special {
77
  color: red;
78
}
79
80
Button.special {
81
  color: red;
82
  background-color: transparent;
83
}
84
85
.special-blue {
86
  color: blue;
87
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/resources/resources/theme/TestExample2.css (+9 lines)
Added Link Here
1
/* CSS file for tests */
2
3
4
/* Selector list rule */
5
6
Button.special, List:selected, Text[SIMPLE] {
7
  border : 2px solid red;
8
  border-top-color : blue;
9
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/resources/resources/theme/TestInvalidProps.css (+12 lines)
Added Link Here
1
2
* {
3
  font: bold 12px Arial, Helvetica, sans-serif;
4
  color: white;
5
  padding: 2px;
6
}
7
8
Button[PUSH], Button[TOGGLE] {
9
  font: 11 'Segoe UI', Corbel, Calibri, Tahoma, 'Lucida Sans Unicode', sans-serif;
10
  color: darkslategray;
11
  padding: 2;
12
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/resources/resources/theme/TestNamespaces.css (+12 lines)
Added Link Here
1
/* CSS file for namespace tests */
2
3
@namespace "org.eclipse.swt.widgets";
4
@namespace my "my";
5
6
Label {
7
  color: blue;
8
}
9
10
my|Label {
11
  color: green;
12
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/resources/resources/theme/TestSelectors.css (+63 lines)
Added Link Here
1
/* CSS file for tests */
2
3
/* All rule */
4
5
* {
6
  color1: white;
7
  color2: black;
8
  color3: yellow;
9
  color4: rgb( 23, 34, 45 );
10
  color5: rgb( 23%, 34%, 45% );
11
  color6: #fb0;
12
  color7: #ffbb00;
13
}
14
15
/* Element rule */
16
17
Label {
18
  background: rgb( 23, 34, 45 );
19
}
20
21
/* Class rule */
22
23
Button.special {
24
  background: yellow;
25
}
26
27
/* Pseudo class rule */
28
29
List:selected {
30
  background: blue;
31
}
32
33
/* Attribute rule */
34
35
Text[SIMPLE] {
36
  background: silver;
37
}
38
39
/* Attribute value rule */
40
41
Text[style=SIMPLE] {
42
  background: silver;
43
}
44
45
/* One-of attribute rule */
46
47
Text[style~=BORDER] {
48
  background: gold;
49
}
50
51
/* Combined attributes rule */
52
53
Text[SIMPLE][BORDER].special {
54
  background: gold;
55
}
56
57
/* Selector list rule */
58
59
Label, Button.special, List:selected, Text[SIMPLE] {
60
  font-family : sans-serif;
61
  border : 2px solid red;
62
  border-top-color : blue;
63
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/resources/resources/theme/TestSyntax.css (+16 lines)
Added Link Here
1
@charset "utf-8";
2
3
@import "mystyle.css";
4
@import url("mystyle.css");
5
@import url("fineprint.css") print;
6
@import url("bluish.css") projection, tv;
7
8
@page {
9
  margin : 10%;
10
}
11
12
Label, Text[SIMPLE], List:selected {
13
  font-family : sans-serif;
14
  border : 2px solid red;
15
  border-top-color : blue;
16
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/resources/resources/theme/theme-valid.properties (+22 lines)
Added Link Here
1
# Valid Test Theme
2
# A completely valid theme.
3
4
# color
5
button.background: #fffaf0
6
7
# border
8
button.border: 2px solid red
9
10
# font
11
button.font: 10px Helvetica bold
12
13
# padding
14
group.padding: 2px 8px
15
16
# image
17
progressbar.bgimage: resources/theme/close.gif
18
19
# variants
20
special/button.border: 1px solid red
21
special/button.background: blue
22
main-shell/shell.border: none
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/src/resources/theme/TestExample.css (-87 lines)
Lines 1-87 Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2008, 2009 Innoopract Informationssysteme GmbH.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 *
8
 * Contributors:
9
 *     Innoopract Informationssysteme GmbH - initial API and implementation
10
 *     EclipseSource - ongoing development
11
 ******************************************************************************/
12
13
/* Test RAP theme file */
14
15
/* All Widgets and Controls */
16
17
* {
18
  rwt-selectionmarker-color: #56a0ea;
19
}
20
21
/* Another rule with the same selector */
22
23
* {
24
  color: rgb( 112, 94, 66 );
25
  background-color: rgb( 255, 255, 255 );
26
  font: bold 12px Arial, Helvetica, sans-serif;
27
}
28
29
/* Wildcard type name with style flag */
30
31
*[BORDER] {
32
  border: 2px outset;
33
}
34
35
/* All white widgets */
36
List, Text, Tree, Table {
37
  background-color: white;
38
}
39
40
/* All gray widgets */
41
Button, Label, Composite {
42
  color: rgb( 39, 64, 139 );
43
  background-color: #c0c0c0;
44
}
45
46
/* Button */
47
48
Button {
49
  color: #705e42; /* 112, 94, 66 */
50
  padding: 12px 6px;
51
}
52
53
Button[PUSH], Button[TOGGLE] {
54
  background-color: #9dd0ea;
55
  border: 1px #1695d4;
56
  font: 11px 'Segoe UI', Tahoma, 'Lucida Sans Unicode';
57
}
58
59
Button[PUSH][BORDER], Button[TOGGLE][BORDER] {
60
  border: 2px #1695d4;
61
}
62
63
Button[PUSH]:pressed, Button[TOGGLE]:pressed {
64
  background-color: rgb( 227, 221, 158 );
65
}
66
67
/* Border radius */
68
Composite[BORDER] {
69
  color: #123456;
70
  border: 2px #1695d4;
71
  border-radius: 5px 10px;
72
}
73
74
/* Custom variant */
75
76
.special {
77
  color: red;
78
}
79
80
Button.special {
81
  color: red;
82
  background-color: transparent;
83
}
84
85
.special-blue {
86
  color: blue;
87
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/src/resources/theme/TestExample2.css (-9 lines)
Lines 1-9 Link Here
1
/* CSS file for tests */
2
3
4
/* Selector list rule */
5
6
Button.special, List:selected, Text[SIMPLE] {
7
  border : 2px solid red;
8
  border-top-color : blue;
9
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/src/resources/theme/TestInvalidProps.css (-12 lines)
Lines 1-12 Link Here
1
2
* {
3
  font: bold 12px Arial, Helvetica, sans-serif;
4
  color: white;
5
  padding: 2px;
6
}
7
8
Button[PUSH], Button[TOGGLE] {
9
  font: 11 'Segoe UI', Corbel, Calibri, Tahoma, 'Lucida Sans Unicode', sans-serif;
10
  color: darkslategray;
11
  padding: 2;
12
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/src/resources/theme/TestNamespaces.css (-12 lines)
Lines 1-12 Link Here
1
/* CSS file for namespace tests */
2
3
@namespace "org.eclipse.swt.widgets";
4
@namespace my "my";
5
6
Label {
7
  color: blue;
8
}
9
10
my|Label {
11
  color: green;
12
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/src/resources/theme/TestSelectors.css (-63 lines)
Lines 1-63 Link Here
1
/* CSS file for tests */
2
3
/* All rule */
4
5
* {
6
  color1: white;
7
  color2: black;
8
  color3: yellow;
9
  color4: rgb( 23, 34, 45 );
10
  color5: rgb( 23%, 34%, 45% );
11
  color6: #fb0;
12
  color7: #ffbb00;
13
}
14
15
/* Element rule */
16
17
Label {
18
  background: rgb( 23, 34, 45 );
19
}
20
21
/* Class rule */
22
23
Button.special {
24
  background: yellow;
25
}
26
27
/* Pseudo class rule */
28
29
List:selected {
30
  background: blue;
31
}
32
33
/* Attribute rule */
34
35
Text[SIMPLE] {
36
  background: silver;
37
}
38
39
/* Attribute value rule */
40
41
Text[style=SIMPLE] {
42
  background: silver;
43
}
44
45
/* One-of attribute rule */
46
47
Text[style~=BORDER] {
48
  background: gold;
49
}
50
51
/* Combined attributes rule */
52
53
Text[SIMPLE][BORDER].special {
54
  background: gold;
55
}
56
57
/* Selector list rule */
58
59
Label, Button.special, List:selected, Text[SIMPLE] {
60
  font-family : sans-serif;
61
  border : 2px solid red;
62
  border-top-color : blue;
63
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/src/resources/theme/TestSyntax.css (-16 lines)
Lines 1-16 Link Here
1
@charset "utf-8";
2
3
@import "mystyle.css";
4
@import url("mystyle.css");
5
@import url("fineprint.css") print;
6
@import url("bluish.css") projection, tv;
7
8
@page {
9
  margin : 10%;
10
}
11
12
Label, Text[SIMPLE], List:selected {
13
  font-family : sans-serif;
14
  border : 2px solid red;
15
  border-top-color : blue;
16
}
(-)a/runtime.rwt.test/org.eclipse.rap.rwt.testfixture/src/resources/theme/theme-valid.properties (-22 lines)
Lines 1-22 Link Here
1
# Valid Test Theme
2
# A completely valid theme.
3
4
# color
5
button.background: #fffaf0
6
7
# border
8
button.border: 2px solid red
9
10
# font
11
button.font: 10px Helvetica bold
12
13
# padding
14
group.padding: 2px 8px
15
16
# image
17
progressbar.bgimage: resources/theme/close.gif
18
19
# variants
20
special/button.border: 1px solid red
21
special/button.background: blue
22
main-shell/shell.border: none
(-)a/runtime.rwt/org.eclipse.rap.rwt.osgi/pom.xml (+36 lines)
Added Link Here
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
	<parent>
6
		<groupId>org.eclipse.rap</groupId>
7
		<artifactId>org.eclipse.rap.parent</artifactId>
8
		<version>1.5.0-SNAPSHOT</version>
9
		<relativePath>../../releng/org.eclipse.rap.releng/pom.xml</relativePath>
10
	</parent>
11
12
	<groupId>org.eclipse.rap</groupId>
13
	<artifactId>org.eclipse.rap.rwt.osgi</artifactId>
14
	<version>1.5.0-SNAPSHOT</version>
15
	<packaging>eclipse-plugin</packaging>
16
	<name>org.eclipse.rap.rwt.osgi</name>
17
	<description>org.eclipse.rap.rwt.osgi</description>
18
19
	<build>
20
		<sourceDirectory>.</sourceDirectory>
21
		<plugins>
22
			<plugin>
23
				<groupId>org.apache.maven.plugins</groupId>
24
				<artifactId>maven-compiler-plugin</artifactId>
25
				<version>2.3.2</version>
26
				<configuration>
27
					<includes>
28
						<include>src/**/*.java</include>
29
						<include>css/**/*.java</include>
30
					</includes>
31
				</configuration>
32
			</plugin>
33
		</plugins>
34
	</build>
35
36
</project>
(-)a/runtime.rwt/org.eclipse.rap.rwt/pom.xml (-1 / +36 lines)
Added Link Here
0
- 
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
	<parent>
6
		<groupId>org.eclipse.rap</groupId>
7
		<artifactId>org.eclipse.rap.parent</artifactId>
8
		<version>1.5.0-SNAPSHOT</version>
9
		<relativePath>../../releng/org.eclipse.rap.releng/pom.xml</relativePath>
10
	</parent>
11
12
	<groupId>org.eclipse.rap</groupId>
13
	<artifactId>org.eclipse.rap.rwt</artifactId>
14
	<version>1.5.0-SNAPSHOT</version>
15
	<packaging>eclipse-plugin</packaging>
16
	<name>org.eclipse.rap.rwt</name>
17
	<description>org.eclipse.rap.rwt</description>
18
19
	<build>
20
		<sourceDirectory>.</sourceDirectory>
21
		<plugins>
22
			<plugin>
23
				<groupId>org.apache.maven.plugins</groupId>
24
				<artifactId>maven-compiler-plugin</artifactId>
25
				<version>2.3.2</version>
26
				<configuration>
27
					<includes>
28
						<include>src/**/*.java</include>
29
						<include>css/**/*.java</include>
30
					</includes>
31
				</configuration>
32
			</plugin>
33
		</plugins>
34
	</build>
35
36
</project>

Return to bug 354781