-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Java 17 - Apache Camel 4.1.0 - ActiveMQ Artemis 2.31.0 - Cucumber 7.14.0 - Knative Client 6.9.0 - Netty 4.1.100.Final - SLF4J 2.0.9 - SnakeYAML 2.2 - Spring Framework 6.0.13 - Testcontainers 1.19.1 - PostrgeSQL 42.6.0
- Loading branch information
1 parent
d23642b
commit cb18802
Showing
452 changed files
with
4,522 additions
and
9,794 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip | ||
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
22 changes: 0 additions & 22 deletions
22
demo/sample-bakery/integration/src/jetty/jetty-embedded.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_10_0.dtd"> | ||
<Configure id="Server" class="org.eclipse.jetty.server.Server"> | ||
|
||
<Set name="connectors"> | ||
<Array type="org.eclipse.jetty.server.Connector"> | ||
<Item> | ||
<New class="org.eclipse.jetty.server.ServerConnector"> | ||
<Arg> | ||
<Ref refid="Server"/> | ||
</Arg> | ||
<Set name="port">18001</Set> | ||
<Set name="name">BakeryServerConnector</Set> | ||
</New> | ||
</Item><Item> | ||
<New class="org.eclipse.jetty.server.ServerConnector"> | ||
<Arg> | ||
<Ref refid="Server"/> | ||
</Arg> | ||
<Set name="port">18002</Set> | ||
<Set name="name">ReportServerConnector</Set> | ||
</New> | ||
</Item> | ||
</Array> | ||
</Set> | ||
|
||
<Set name="handler"> | ||
<New class="org.eclipse.jetty.server.handler.HandlerCollection"> | ||
<Arg> | ||
<Array type="org.eclipse.jetty.server.Handler"> | ||
<Item> | ||
<New class="org.eclipse.jetty.server.handler.ContextHandlerCollection"> | ||
<Arg> | ||
<Array type="org.eclipse.jetty.server.handler.ContextHandler"> | ||
<Item> | ||
<New class="org.eclipse.jetty.maven.plugin.MavenWebAppContext"> | ||
<Set name="contextPath">/web</Set> | ||
<Set name="war">${settings.localRepository}/org/citrusframework/samples/citrus-bakery-web/${project.version}/citrus-bakery-web-${project.version}.war</Set> | ||
</New> | ||
</Item> | ||
<Item> | ||
<New class="org.eclipse.jetty.maven.plugin.MavenWebAppContext"> | ||
<Set name="contextPath">/</Set> | ||
<Set name="war">${settings.localRepository}/org/citrusframework/samples/citrus-bakery-report/${project.version}/citrus-bakery-report-${project.version}.war</Set> | ||
</New> | ||
</Item> | ||
</Array> | ||
</Arg> | ||
</New> | ||
</Item> | ||
</Array> | ||
</Arg> | ||
</New> | ||
</Set> | ||
|
||
</Configure> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.