|
@@ -0,0 +1,85 @@
|
|
|
+<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/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+ <groupId>org.glassfish.grizzly.bm</groupId>
|
|
|
+ <artifactId>grizzly-bm</artifactId>
|
|
|
+ <version>0.1</version>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
+ <name>grizzly-bm</name>
|
|
|
+ <url>http://maven.apache.org</url>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <defaultGoal>install</defaultGoal>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ <testResources>
|
|
|
+ <testResource>
|
|
|
+ <directory>src/test/resources</directory>
|
|
|
+ </testResource>
|
|
|
+ </testResources>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <inherited>true</inherited>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>2.3.2</version>
|
|
|
+ <configuration>
|
|
|
+ <source>1.7</source>
|
|
|
+ <target>1.7</target>
|
|
|
+ <optimize>true</optimize>
|
|
|
+ <debug>false</debug>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-assembly-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <archive>
|
|
|
+ <manifest>
|
|
|
+ <mainClass>org.glassfish.grizzly.bm.Server</mainClass>
|
|
|
+ </manifest>
|
|
|
+ </archive>
|
|
|
+ <descriptorRefs>
|
|
|
+ <descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
+ </descriptorRefs>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>make-assembly</id> <!-- this is used for inheritance merges -->
|
|
|
+ <phase>package</phase> <!-- bind to the packaging phase -->
|
|
|
+ <goals>
|
|
|
+ <goal>single</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.glassfish.grizzly</groupId>
|
|
|
+ <artifactId>grizzly-http-server</artifactId>
|
|
|
+ <version>2.3.4-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
+ <version>2.2.2</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>grizzly-snapshots</id>
|
|
|
+ <url>https://maven.java.net/content/repositories/snapshots/</url>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+</project>
|