Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump camel-core from 2.24.1 to 3.2.0 in /src/it/projects/bugs/massembly-920 #137

Merged
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
2 changes: 1 addition & 1 deletion src/it/projects/bugs/massembly-920/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ under the License.
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>2.24.1</version>
<version>3.2.0</version>
</dependency>
</dependencies>

Expand Down
8 changes: 6 additions & 2 deletions src/it/projects/bugs/massembly-920/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,9 @@ import java.util.jar.*

def jarWithDeps = new JarFile(new File( basedir, 'target/massembly-920-0.0.1-SNAPSHOT-jar.jar'))

assert jarWithDeps.getEntry('META-INF/services/org/apache/camel/TypeConverter') != null
assert jarWithDeps.getEntry('META-INF/services/TypeConverter') == null

def entry = jarWithDeps.getEntry('META-INF/services/org/apache/camel/TypeConverterLoader')
assert entry != null

// check if services are merged
assert entry.getSize() > 800