0
|
1 <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">
|
|
2
|
|
3 <modelVersion>4.0.0</modelVersion>
|
|
4 <groupId>org.msgpack</groupId>
|
|
5 <artifactId>msgpack</artifactId>
|
|
6 <name>MessagePack for Java</name>
|
|
7 <description>MessagePack for Java is a binary-based efficient object
|
|
8 serialization library in Java.</description>
|
|
9 <version>0.6.12-SNAPSHOT</version>
|
|
10 <packaging>bundle</packaging>
|
|
11 <url>http://msgpack.org/</url>
|
|
12
|
|
13 <licenses>
|
|
14 <license>
|
|
15 <name>The Apache Software License, Version 2.0</name>
|
|
16 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
17 <distribution>repo</distribution>
|
|
18 </license>
|
|
19 </licenses>
|
|
20
|
|
21 <scm>
|
|
22 <connection>scm:git:git://github.com/msgpack/msgpack-java.git</connection>
|
|
23 <developerConnection>scm:git:git@github.com:msgpack/msgpack-java.git</developerConnection>
|
|
24 <url>scm:git:git://github.com/msgpack/msgpack-java.git</url>
|
|
25 </scm>
|
|
26
|
|
27 <issueManagement>
|
|
28 <system>GitHub</system>
|
|
29 <url>https://github.com/msgpack/msgpack-java/issues</url>
|
|
30 </issueManagement>
|
|
31
|
|
32 <developers>
|
|
33 <developer>
|
|
34 <id>frsyuki</id>
|
|
35 <name>Sadayuki Furuhashi</name>
|
|
36 <email>frsyuki@users.sourceforge.jp</email>
|
|
37 </developer>
|
|
38 <developer>
|
|
39 <id>muga</id>
|
|
40 <name>Muga Nishizawa</name>
|
|
41 <email>muga.nishizawa@gmail.com</email>
|
|
42 </developer>
|
|
43 </developers>
|
|
44
|
|
45 <dependencies>
|
|
46 <dependency>
|
|
47 <groupId>com.googlecode.json-simple</groupId>
|
|
48 <artifactId>json-simple</artifactId>
|
|
49 <version>1.1.1</version>
|
|
50 <exclusions>
|
|
51 <exclusion>
|
|
52 <artifactId>junit</artifactId>
|
|
53 <groupId>junit</groupId>
|
|
54 </exclusion>
|
|
55 </exclusions>
|
|
56 </dependency>
|
|
57 <dependency>
|
|
58 <groupId>org.javassist</groupId>
|
|
59 <artifactId>javassist</artifactId>
|
|
60 <version>3.18.1-GA</version>
|
|
61 <scope>compile</scope>
|
|
62 </dependency>
|
|
63 <dependency>
|
|
64 <groupId>junit</groupId>
|
|
65 <artifactId>junit</artifactId>
|
|
66 <version>4.8.2</version>
|
|
67 <scope>test</scope>
|
|
68 </dependency>
|
|
69 </dependencies>
|
|
70
|
|
71 <parent>
|
|
72 <groupId>org.sonatype.oss</groupId>
|
|
73 <artifactId>oss-parent</artifactId>
|
|
74 <version>7</version>
|
|
75 </parent>
|
|
76
|
|
77 <build>
|
|
78 <resources>
|
|
79 <resource>
|
|
80 <directory>src/main/resources</directory>
|
|
81 </resource>
|
|
82 </resources>
|
|
83 <testResources>
|
|
84 <testResource>
|
|
85 <directory>src/test/resources</directory>
|
|
86 </testResource>
|
|
87 </testResources>
|
|
88 <plugins>
|
|
89 <plugin>
|
|
90 <artifactId>maven-compiler-plugin</artifactId>
|
|
91 <version>2.3.2</version>
|
|
92 <configuration>
|
|
93 <source>1.6</source>
|
|
94 <target>1.6</target>
|
|
95 <encoding>UTF-8</encoding>
|
|
96 </configuration>
|
|
97 </plugin>
|
|
98 <plugin>
|
|
99 <groupId>org.apache.felix</groupId>
|
|
100 <artifactId>maven-bundle-plugin</artifactId>
|
|
101 <version>2.3.6</version>
|
|
102 <extensions>true</extensions>
|
|
103 </plugin>
|
|
104 <plugin>
|
|
105 <artifactId>maven-eclipse-plugin</artifactId>
|
|
106 <version>2.5.1</version>
|
|
107 </plugin>
|
|
108 <plugin>
|
|
109 <groupId>org.apache.maven.plugins</groupId>
|
|
110 <artifactId>maven-source-plugin</artifactId>
|
|
111 <version>2.1.2</version>
|
|
112 <executions>
|
|
113 <execution>
|
|
114 <id>attach-sources</id>
|
|
115 <goals>
|
|
116 <goal>jar</goal>
|
|
117 </goals>
|
|
118 </execution>
|
|
119 </executions>
|
|
120 </plugin>
|
|
121 <plugin>
|
|
122 <groupId>org.apache.maven.plugins</groupId>
|
|
123 <artifactId>maven-scm-plugin</artifactId>
|
|
124 <version>1.6</version>
|
|
125 <configuration>
|
|
126 <pushChanges>false</pushChanges>
|
|
127 </configuration>
|
|
128 </plugin>
|
|
129 <plugin>
|
|
130 <groupId>org.apache.maven.plugins</groupId>
|
|
131 <artifactId>maven-javadoc-plugin</artifactId>
|
|
132 <version>2.8.1</version>
|
|
133 <configuration>
|
|
134 <doctitle>${project.name} ${project.version} API</doctitle>
|
|
135 <aggregate>true</aggregate>
|
|
136 <locale>en_US</locale>
|
|
137 <encoding>UTF-8</encoding>
|
|
138 </configuration>
|
|
139 </plugin>
|
|
140 <!--
|
|
141 <plugin>
|
|
142 <groupId>org.apache.maven.plugins</groupId>
|
|
143 <artifactId>maven-surefire-plugin</artifactId>
|
|
144 <version>2.13</version>
|
|
145 <configuration>
|
|
146 <parallel>methods</parallel>
|
|
147 <threadCount>10</threadCount>
|
|
148 </configuration>
|
|
149 <dependencies>
|
|
150 <dependency>
|
|
151 <groupId>org.apache.maven.surefire</groupId>
|
|
152 <artifactId>surefire-junit47</artifactId>
|
|
153 <version>2.13</version>
|
|
154 </dependency>
|
|
155 </dependencies>
|
|
156 </plugin>
|
|
157 -->
|
|
158 <plugin>
|
|
159 <groupId>org.apache.maven.plugins</groupId>
|
|
160 <artifactId>maven-surefire-plugin</artifactId>
|
|
161 <version>2.8.1</version>
|
|
162 <configuration>
|
|
163 <argLine>-Xmx512M</argLine>
|
|
164 </configuration>
|
|
165 </plugin>
|
|
166 <plugin>
|
|
167 <groupId>org.codehaus.mojo</groupId>
|
|
168 <artifactId>findbugs-maven-plugin</artifactId>
|
|
169 <configuration>
|
|
170 <findbugsXmlOutput>true</findbugsXmlOutput>
|
|
171 <xmlOutput>true</xmlOutput>
|
|
172 <effort>Max</effort>
|
|
173 </configuration>
|
|
174 </plugin>
|
|
175 </plugins>
|
|
176 </build>
|
|
177
|
|
178 <reporting>
|
|
179 <plugins>
|
|
180 <plugin>
|
|
181 <groupId>org.apache.maven.plugins</groupId>
|
|
182 <artifactId>maven-jxr-plugin</artifactId>
|
|
183 <version>2.2</version>
|
|
184 </plugin>
|
|
185 <plugin>
|
|
186 <groupId>org.apache.maven.plugins</groupId>
|
|
187 <artifactId>maven-surefire-report-plugin</artifactId>
|
|
188 <version>2.11</version>
|
|
189 </plugin>
|
|
190 </plugins>
|
|
191 </reporting>
|
|
192
|
|
193 </project>
|