Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions dev/io.openliberty.transport_fat.2/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="bin" path="fat/src"/>
<classpathentry kind="src" path="test-applications/InactivityTimeout.war/src"/>
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="output" path="bin"/>
</classpath>
9 changes: 9 additions & 0 deletions dev/io.openliberty.transport_fat.2/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.log*
bundles
dist
/coverage.ec
/ffdc
/junit*properties
/reports
/build
/autoFVT
23 changes: 23 additions & 0 deletions dev/io.openliberty.transport_fat.2/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>io.openliberty.transport_fat.2</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>bndtools.core.bndbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>bndtools.core.bndnature</nature>
</natures>
</projectDescription>
42 changes: 42 additions & 0 deletions dev/io.openliberty.transport_fat.2/bnd.bnd
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#*******************************************************************************
# Copyright (c) 2018, 2025 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#*******************************************************************************
-include= ~../cnf/resources/bnd/bundle.props
bVersion=1.0

src: \
fat/src,\
test-applications/InactivityTimeout.war/src

fat.project: true

# Define additional tested features that are NOT present in any XML files in this bucket.
# In this case, Java EE 8 features are added programmatically at runtime by the RepeatTests rule.
tested.features:\
servlet-3.0, \
servlet-4.0, \
servlet-5.0, \
servlet-6.0, \
servlet-6.1

-buildpath:\
io.openliberty.org.apache.commons.logging;version=latest, \
io.openliberty.org.apache.commons.codec;version=latest, \
com.ibm.websphere.appserver.spi.servlet;version=latest,\
com.ibm.websphere.javaee.servlet.4.0;version=latest, \
com.ibm.ws.transport.http;version=latest, \
com.ibm.ws.channelfw;version=latest, \
com.ibm.ws.webcontainer;version=latest, \
org.apache.httpcomponents.client5:httpclient5;version=5.0.2, \
org.apache.httpcomponents.core5:httpcore5;version=5.0.2, \
org.apache.httpcomponents.core5:httpcore5-h2;version=5.0.2, \
commons-httpclient:commons-httpclient;version=3.1, \
httpunit:httpunit;version=1.5.4, \
net.sf.jtidy:jtidy;version=9.3.8, \
com.ibm.ws.org.slf4j.simple;version=latest
21 changes: 21 additions & 0 deletions dev/io.openliberty.transport_fat.2/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*******************************************************************************
* Copyright (c) 2021, 2024 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/

// Define G:A:V coordinates of each dependency
dependencies {
requiredLibs 'org.apache.httpcomponents.client5:httpclient5:5.0.2',
'org.apache.httpcomponents.core5:httpcore5:5.0.2',
'org.apache.httpcomponents.core5:httpcore5-h2:5.0.2'
}

addRequiredLibraries.dependsOn addJakartaTransformer
6 changes: 6 additions & 0 deletions dev/io.openliberty.transport_fat.2/cognitiveMetadata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
# YML metadata file made use of by the Cognitive Ecosystem.
# Reference Cognitive Metadata is available at: https://github.com/OpenLiberty/open-liberty/tree/integration/dev/build.example_fat/cognitiveMetadata.yml
# description: Uncomment this field and add a description to give some notes about this bucket.
# triageNotes: Uncomment this field if there are some short notes you would like Pipeline Monitors to see when triaging this bucket.
functionalArea: Transport (cfw, http, ssl, orb, websockets)
Loading