formatting cleanup

This commit is contained in:
Joakim Erdfelt 2013-12-11 13:21:04 -07:00
parent 8f132a2e0c
commit 85f2bebab3

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <parent>
<artifactId>jetty-project</artifactId> <artifactId>jetty-project</artifactId>
<groupId>org.eclipse.jetty</groupId> <groupId>org.eclipse.jetty</groupId>
@ -14,14 +15,14 @@
<url>http://www.eclipse.org/jetty</url> <url>http://www.eclipse.org/jetty</url>
<modules> <modules>
<module>websocket-common</module> <module>websocket-common</module>
<module>websocket-api</module> <module>websocket-api</module>
<module>websocket-client</module> <module>websocket-client</module>
<module>websocket-server</module> <module>websocket-server</module>
<module>websocket-servlet</module> <module>websocket-servlet</module>
<module>websocket-mux-extension</module> <module>websocket-mux-extension</module>
<module>javax-websocket-client-impl</module> <module>javax-websocket-client-impl</module>
<module>javax-websocket-server-impl</module> <module>javax-websocket-server-impl</module>
</modules> </modules>
<build> <build>
@ -43,41 +44,41 @@
<goal>manifest</goal> <goal>manifest</goal>
</goals> </goals>
<configuration> <configuration>
<instructions> <instructions>
<Export-Package>${bundle-symbolic-name}.*;version="9.1"</Export-Package> <Export-Package>${bundle-symbolic-name}.*;version="9.1"</Export-Package>
<Import-Package>javax.servlet.*;version="[3.0,4.0)",org.eclipse.jetty.*;version="[9.0,10.0)",*</Import-Package> <Import-Package>javax.servlet.*;version="[3.0,4.0)",org.eclipse.jetty.*;version="[9.0,10.0)",*</Import-Package>
<_nouses>true</_nouses> <_nouses>true</_nouses>
</instructions> </instructions>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<configuration> <configuration>
<archive> <archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId> <artifactId>clirr-maven-plugin</artifactId>
<version>2.5</version> <version>2.5</version>
<executions> <executions>
<execution> <execution>
<id>compare-api</id> <id>compare-api</id>
<phase>package</phase> <phase>package</phase>
<goals> <goals>
<goal>clirr</goal> <goal>clirr</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<minSeverity>info</minSeverity> <minSeverity>info</minSeverity>
<comparisonVersion>9.1.0.v20131115</comparisonVersion> <comparisonVersion>9.1.0.v20131115</comparisonVersion>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>