Skip to content

Commit 6a88341

Browse files
authored
Merge pull request #27820 from neuwerk/jaxwsExcutorFat
JAX-WS: Add ManagedExecutor fat tests
2 parents fffd930 + 27f79b5 commit 6a88341

File tree

18 files changed

+1359
-0
lines changed

18 files changed

+1359
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="fat/src"/>
4+
<classpathentry kind="src" path="test-applications/BT11AddNumbersImplService/src"/>
5+
<classpathentry kind="src" path="test-applications/cxfclient/src"/>
6+
<classpathentry kind="src" path="test-applications/defaultpackage/src"/>
7+
<classpathentry kind="src" path="test-applications/simpleservice/src"/>
8+
<classpathentry kind="src" path="test-applications/jaxws22mtom/src"/>
9+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
10+
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
11+
<classpathentry kind="output" path="bin"/>
12+
</classpath>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/bootstrapping.properties
2+
/.DS_Store
3+
publish/servers/**/*.war
4+
publish/files/*.zip
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>io.openliberty.jaxws.executor_fat</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>bndtools.core.bndbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>bndtools.core.bndnature</nature>
22+
</natures>
23+
</projectDescription>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
compileErrorAction=build
2+
eclipse.preferences.version=1
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#Ant properties
2+
#Automatically generated by the ant prepare.settings.files task
3+
eclipse.preferences.version=1
4+
encoding/<project>=UTF-8

dev/io.openliberty.jaxws.executor_fat/.settings/org.eclipse.jdt.core.prefs

Lines changed: 283 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<faceted-project>
3+
<installed facet="java" version="1.8"/>
4+
</faceted-project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.wst.ws.service.policy.projectEnabled=false
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
#*******************************************************************************
2+
# Copyright (c) 2024 IBM Corporation and others.
3+
# All rights reserved. This program and the accompanying materials
4+
# are made available under the terms of the Eclipse Public License 2.0
5+
# which accompanies this distribution, and is available at
6+
# http://www.eclipse.org/legal/epl-2.0/
7+
#
8+
# SPDX-License-Identifier: EPL-2.0
9+
#*******************************************************************************
10+
-include= ~../cnf/resources/bnd/bundle.props
11+
bVersion=1.0
12+
13+
src: \
14+
fat/src,\
15+
test-applications/simpleservice/src
16+
17+
18+
fat.project: true
19+
20+
# These features get added programmatically
21+
tested.features: \
22+
concurrent-2.0, \
23+
concurrent-3.0, \
24+
jsp-2.2, \
25+
servlet-3.1, \
26+
pages-3.0, \
27+
servlet-5.0, \
28+
servlet-6.0, \
29+
xmlBinding-3.0, \
30+
xmlbinding-4.0, \
31+
xmlWS-3.0, \
32+
xmlws-4.0
33+
34+
-buildpath: \
35+
com.ibm.websphere.javaee.annotation.1.2;version=latest,\
36+
com.ibm.websphere.javaee.cdi.2.0;version=latest,\
37+
com.ibm.websphere.javaee.jaxrs.2.1;version=latest,\
38+
com.ibm.websphere.javaee.jsonb.1.0,\
39+
com.ibm.websphere.javaee.jsonp.1.1,\
40+
com.ibm.websphere.javaee.servlet.3.1;version=latest,\
41+
com.ibm.websphere.javaee.concurrent.1.0;version=latest
42+
com.ibm.websphere.javaee.annotation.1.2,\
43+
com.ibm.websphere.javaee.jaxb.2.2;version=latest,\
44+
com.ibm.websphere.javaee.jaxws.2.2,\
45+
com.ibm.websphere.javaee.jws.1.0;version=latest,\
46+
com.ibm.websphere.javaee.wsdl4j.1.2;version=latest,\
47+
fattest.simplicity,\
48+
com.ibm.ws.jaxb.tools;version=latest,\
49+
io.openliberty.org.apache.commons.logging;version=latest,\
50+
com.ibm.ws.org.slf4j.jdk14;version=latest
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation and others.
3+
* All rights reserved. This program and the accompanying materials
4+
* are made available under the terms of the Eclipse Public License 2.0
5+
* which accompanies this distribution, and is available at
6+
* http://www.eclipse.org/legal/epl-2.0/
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
addRequiredLibraries.dependsOn addJakartaTransformer

0 commit comments

Comments
 (0)