This file contains hidden or 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
<profile> | |
<id>jdk9-build</id> | |
<activation> | |
<jdk>9</jdk> | |
</activation> | |
<build> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> |
This file contains hidden or 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
<profile> | |
<id>jdk9-build</id> | |
<activation> | |
<jdk>9</jdk> | |
</activation> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> |
This file contains hidden or 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
<dependency> | |
<groupId>javax.xml.bind</groupId> | |
<artifactId>jaxb-api</artifactId> | |
<version>2.2.11</version> | |
</dependency> |
This file contains hidden or 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
testMarshallList(org.apache.camel.dataformat.bindy.fixed.marshall.simple.BindySimpleFixedLengthObjectMarshallTest) Time elapsed: 0 sec <<< ERROR! | |
java.lang.IllegalStateException: Failed to load ApplicationContext | |
Caused by: java.lang.IllegalStateException: Cannot load configuration class: org.apache.camel.spring.boot.TypeConversionConfiguration | |
Caused by: java.lang.NoClassDefFoundError: Could not initialize class org.springframework.cglib.proxy.Enhancer | |
Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) throws java.lang.ClassFormatError accessible: module java.base does not "opens java.lang" to unnamed module @5db4c359 |
This file contains hidden or 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
testMarshallList(org.apache.camel.dataformat.bindy.fixed.marshall.simple.BindySimpleFixedLengthObjectMarshallTest) Time elapsed: 0 sec <<< ERROR! | |
java.lang.IllegalStateException: Failed to load ApplicationContext | |
Caused by: java.lang.IllegalStateException: Cannot load configuration class: org.apache.camel.spring.boot.TypeConversionConfiguration | |
Caused by: java.lang.NoClassDefFoundError: Could not initialize class com.sun.xml.bind.v2.runtime.reflect.opt.Injector | |
Caused by: java.lang.NoClassDefFoundError: Could not initialize class org.springframework.cglib.proxy.Enhancer | |
Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) throws java.lang.ClassFormatError accessible: module java.base does not "opens java.lang" to unnamed module @5db4c359 |
This file contains hidden or 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
Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make public final com.sun.xml.internal.bind.v2.runtime.JaxBeanInfo com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl.getBeanInfo(java.lang.Class) accessible: | |
module java.xml.bind does not "exports com.sun.xml.internal.bind.v2.runtime" to unnamed module @b968a76 |
This file contains hidden or 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
<feature name='camel-olingo4' version='${project.version}' resolver='(obr)' start-level='50'> | |
<feature version='${project.version}'>camel-core</feature> | |
<feature>http</feature> | |
<bundle dependency='true'>mvn:commons-lang/commons-lang/${commons-lang-version}</bundle> | |
<bundle dependency='true'>mvn:commons-io/commons-io/${commons-io-version}</bundle> | |
<bundle dependency='true'>mvn:org.apache.httpcomponents/httpcore-osgi/${httpcore4-version}</bundle> | |
<bundle dependency='true'>mvn:org.apache.httpcomponents/httpclient-osgi/${httpclient4-version}</bundle> | |
<bundle dependency='true'>mvn:org.apache.httpcomponents/httpasyncclient-osgi/${httpasyncclient-version}</bundle> | |
<bundle dependency='true'>mvn:com.fasterxml.jackson.core/jackson-core/${jackson2-version}</bundle> | |
<bundle dependency='true'>mvn:com.fasterxml.jackson.core/jackson-annotations/${jackson2-version}</bundle> |
This file contains hidden or 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
--- components/camel-spring/pom.xml (date 1511193500000) | |
+++ components/camel-spring/pom.xml (revision ) | |
@@ -650,6 +650,9 @@ | |
<configuration> | |
<target> | |
<echo>Copying XSD schema to be included in JAR</echo> | |
+ <replace file="${project.build.directory}/schema/schema1.xsd" | |
+ token="xmlns:xs="http://www.w3.org/2001/XMLSchema"" | |
+ value="xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema""/> | |
<move file="${project.build.directory}/schema/schema1.xsd" tofile="${project.build.directory}/schema/camel-spring.xsd" /> |
This file contains hidden or 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
#!/bin/sh | |
mvn clean install -Dtest=FileConsumerPreMoveLastModifiedTest -f camel-core/pom.xml | |
test_exit_code=$? | |
git checkout -- . | |
exit "$test_exit_code" |
This file contains hidden or 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
[jpoth@localhost ~/dev/git/apache/camel]$git bisect start HEAD camel-2.17.0 | |
Bisecting: a merge base must be tested | |
[95a7910f00bb42398acd1fbedc1bd88e0f53d475] Add setContentLengthLong() method defined in ServletResponse | |
[jpoth@localhost ~/dev/git/apache/camel]$git bisect run ./git-run.sh | |
running ./git-run.sh | |
..... COFFEE BREAK ~ 20 minutes later | |