Hi currently in using the apache tomee maven plugin 1.6.0-SNAPSHOT with
webprofile classifier, im doing my first step's with jax-rs, then i change
the classifier but maven could not find the tomee plugin with jaxrs
classifier
<plugin>
<groupId>org.apache.openejb.maven</groupId>
<artifactId>tomee-maven-plugin</artifactId>
<version>1.6.0-SNAPSHOT</version>
<inherited>false</inherited>
<configuration>
<tomeeVersion>1.6.0-SNAPSHOT</tomeeVersion>
<tomeeClassifier>jaxrs</tomeeClassifier>
............
With <tomeeClassifier>webprofile</tomeeClassifier> it works but with jaxrs
doesnt work.
I get: Could not find artifact
org.apache.openejb:apache-tomee:zip:jaxrs:1.6.0-SNAPSHOT in
apache-repo-snapshot (https://repository.apache.org/content/groups/snapshots
)
Any advice?