Skip to content

Commit

Permalink
Merge pull request #1370 from olamy/bugfix/920
Browse files Browse the repository at this point in the history
Bugfix for #920 (disable bundle plugin)
  • Loading branch information
janbartel committed Mar 15, 2017
2 parents e695fc8 + d5aa619 commit 0540d7e
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions jetty-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins
</groupId>
<groupId>org.apache.maven.plugins </groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
Expand All @@ -63,6 +62,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -92,10 +99,10 @@
<artifactId>jetty-jndi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit 0540d7e

Please sign in to comment.