Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2012-07-23 04:08:35 +0000
committerGreg Wilkins2012-07-23 04:08:35 +0000
commit8101b67ce88b6f78bceef167cf8483acb2c55342 (patch)
tree3456f4aac0ea6e44ba8c70d810b74a2e847f9eea /jetty-util-ajax/pom.xml
parentf8ca13c3b314c1da1c04ae7ccd32b3da42ab97a8 (diff)
downloadorg.eclipse.jetty.project-8101b67ce88b6f78bceef167cf8483acb2c55342.tar.gz
org.eclipse.jetty.project-8101b67ce88b6f78bceef167cf8483acb2c55342.tar.xz
org.eclipse.jetty.project-8101b67ce88b6f78bceef167cf8483acb2c55342.zip
jetty-9 lots of code cleanups from findbugs, warnings and TODOs
Diffstat (limited to 'jetty-util-ajax/pom.xml')
-rw-r--r--jetty-util-ajax/pom.xml88
1 files changed, 88 insertions, 0 deletions
diff --git a/jetty-util-ajax/pom.xml b/jetty-util-ajax/pom.xml
new file mode 100644
index 0000000000..6073f6e56b
--- /dev/null
+++ b/jetty-util-ajax/pom.xml
@@ -0,0 +1,88 @@
+<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>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-project</artifactId>
+ <version>9.0.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>jetty-util-ajax</artifactId>
+ <name>Jetty :: Utilities :: Ajax(JSON)</name>
+ <description>JSON/Ajax Utility classes for Jetty</description>
+ <properties>
+ <bundle-symbolic-name>${project.groupId}.util.ajax</bundle-symbolic-name>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <executions>
+ <execution>
+ <goals>
+ <goal>manifest</goal>
+ </goals>
+ <configuration>
+ <instructions>
+ <Import-Package>javax.servlet.*;version="2.6.0",org.slf4j;version="[1.5,2.0)";resolution:=optional,org.slf4j.impl;version="[1.5,2.0)";resolution:=optional,*</Import-Package>
+ </instructions>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <!--
+ Required for OSGI
+ -->
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <descriptorRefs>
+ <descriptorRef>config</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <configuration>
+ <onlyAnalyze>org.eclipse.jetty.util.ajax.*</onlyAnalyze>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-util</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty.orbit</groupId>
+ <artifactId>javax.servlet</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty.toolchain</groupId>
+ <artifactId>jetty-test-helper</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>

Back to the top