Skip to content

Commit

Permalink
[JBTM-3176] stop using unnamed package as io.smallrye.metrics fails
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed Aug 19, 2019
1 parent 86d4c91 commit fe02d03
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* (C) 2011,
* @author JBoss, by Red Hat.
*/
package org.jboss.narayana.quickstarts;

import static org.junit.Assert.assertTrue;

import java.util.List;
Expand Down Expand Up @@ -59,10 +61,8 @@ public static WebArchive createDeployment() {
.addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml");
archive.delete(ArchivePaths.create("META-INF/MANIFEST.MF"));

// Need to make sure we add the arquillian-service and msc as a
// dependency
final String ManifestMF = "Manifest-Version: 1.0\n"
+ "Dependencies: org.jboss.modules,org.jboss.msc,org.jboss.jts\n";
+ "Dependencies: org.jboss.jts\n";
archive.setManifest(new StringAsset(ManifestMF));

return archive;
Expand Down

0 comments on commit fe02d03

Please sign in to comment.