Examples of PackagingType


Examples of org.jboss.shrinkwrap.resolver.api.maven.PackagingType

    @Test
    public void ejbPackaging() {

        final String groupId = "groupId";
        final String artifactId = "artifactId";
        final PackagingType packaging = PackagingType.of("ejb");
        final String version = "version";
        final MavenCoordinate coordinate = new MavenCoordinateImpl(groupId, artifactId, version, packaging, null);
        Assert.assertEquals(PackagingType.EJB, coordinate.getPackaging());
        Assert.assertEquals("jar", coordinate.getPackaging().getExtension());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.