I would like to use src / main / javascript as the source directory for my javascript files, at the same time using src / main / webapp for most other web files, but the maven jetty: run plugin does not know about this directory by default.
Below is information on how far I have come so far, but Jetty doesn't seem to know about my javascript directory:
<build> <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.12</version> <configuration> <webAppConfig> <contextPath>/${project.artifactId}</contextPath> <extraClasspath>target/classes/:src/main/javascript</extraClasspath> </webAppConfig> <webResources> <resource> <directory>src/main/webapp</directory> <directory>src/main/javascript</directory> </resource> </webResources> </configuration> </plugin>
How do I make the maven pier plugin aware of this additional web directory?
source share