|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>org.msgpack</groupId> |
6 | | - <artifactId>msgpack-core</artifactId> |
7 | | - <version>0.7.0-SNAPSHOT</version> |
8 | | - <packaging>jar</packaging> |
9 | | - |
10 | | - <name>MessagePack for Java</name> |
11 | | - <description>MessagePack for Java</description> |
12 | | - <url>http://msgpack.org/</url> |
13 | 5 |
|
14 | 6 | <parent> |
15 | | - <groupId>org.sonatype.oss</groupId> |
16 | | - <artifactId>oss-parent</artifactId> |
17 | | - <version>7</version> |
| 7 | + <groupId>org.msgpack</groupId> |
| 8 | + <artifactId>msgpack-root</artifactId> |
| 9 | + <version>0.7.0-SNAPSHOT</version> |
18 | 10 | </parent> |
19 | 11 |
|
20 | | - <licenses> |
21 | | - <license> |
22 | | - <name>The Apache Software License, Version 2.0</name> |
23 | | - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
24 | | - <distribution>repo</distribution> |
25 | | - </license> |
26 | | - </licenses> |
27 | | - |
28 | | - <scm> |
29 | | - <connection>scm:git:git://github.com/msgpack/msgpack-java.git</connection> |
30 | | - <developerConnection>scm:git:git@github.com:msgpack/msgpack-java.git</developerConnection> |
31 | | - <url>scm:git:git://github.com/msgpack/msgpack-java.git</url> |
32 | | - </scm> |
33 | | - |
34 | | - <issueManagement> |
35 | | - <system>GitHub</system> |
36 | | - <url>https://github.com/msgpack/msgpack-java/issues</url> |
37 | | - </issueManagement> |
| 12 | + <artifactId>msgpack-core</artifactId> |
| 13 | + <name>msgpack-core</name> |
38 | 14 |
|
39 | 15 | <dependencies> |
40 | 16 | <dependency> |
41 | 17 | <groupId>junit</groupId> |
42 | 18 | <artifactId>junit</artifactId> |
43 | | - <version>4.8.2</version> |
44 | 19 | <scope>test</scope> |
45 | 20 | </dependency> |
46 | 21 |
|
47 | 22 | <dependency> |
48 | 23 | <groupId>org.mockito</groupId> |
49 | 24 | <artifactId>mockito-core</artifactId> |
50 | | - <version>1.9.5</version> |
51 | 25 | <scope>test</scope> |
52 | 26 | </dependency> |
53 | 27 | </dependencies> |
54 | | - |
55 | | - <build> |
56 | | - <plugins> |
57 | | - <plugin> |
58 | | - <artifactId>maven-compiler-plugin</artifactId> |
59 | | - <version>3.1</version> |
60 | | - <configuration> |
61 | | - <source>1.6</source> |
62 | | - <target>1.6</target> |
63 | | - <encoding>UTF-8</encoding> |
64 | | - <compilerArgs> |
65 | | - <arg>-Xlint:unchecked</arg> |
66 | | - </compilerArgs> |
67 | | - </configuration> |
68 | | - </plugin> |
69 | | - |
70 | | - <plugin> |
71 | | - <groupId>org.apache.maven.plugins</groupId> |
72 | | - <artifactId>maven-surefire-plugin</artifactId> |
73 | | - <version>2.15</version> |
74 | | - <configuration> |
75 | | - <argLine>-Xmx512M</argLine> |
76 | | - </configuration> |
77 | | - </plugin> |
78 | | - |
79 | | - <plugin> |
80 | | - <artifactId>maven-eclipse-plugin</artifactId> |
81 | | - <version>2.9</version> |
82 | | - </plugin> |
83 | | - </plugins> |
84 | | - </build> |
85 | | - |
86 | 28 | </project> |
0 commit comments