|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - |
5 | | - <groupId>com.danga</groupId> |
6 | | - <artifactId>Memcached-Java-Client</artifactId> |
7 | | - <version>2.6.5</version> |
8 | | - <packaging>jar</packaging> |
9 | | - |
10 | | - <name>Memcached-Java-Client</name> |
11 | | - <url>https://github.com/gwhalin/Memcached-Java-Client</url> |
12 | | - |
13 | | - <properties> |
14 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | | - </properties> |
16 | | - |
17 | | - <dependencies> |
18 | | - <dependency> |
19 | | - <groupId>junit</groupId> |
20 | | - <artifactId>junit</artifactId> |
21 | | - <version>3.8.1</version> |
22 | | - <scope>test</scope> |
23 | | - </dependency> |
24 | | - <dependency> |
25 | | - <groupId>commons-pool</groupId> |
26 | | - <artifactId>commons-pool</artifactId> |
27 | | - <version>1.5.6</version> |
28 | | - </dependency> |
29 | | - <dependency> |
30 | | - <groupId>org.slf4j</groupId> |
31 | | - <artifactId>slf4j-api</artifactId> |
32 | | - <version>1.6.4</version> |
33 | | - </dependency> |
34 | | - <dependency> |
35 | | - <groupId>org.slf4j</groupId> |
36 | | - <artifactId>slf4j-simple</artifactId> |
37 | | - <version>1.6.4</version> |
38 | | - <scope>provided</scope> |
39 | | - </dependency> |
40 | | - </dependencies> |
41 | | - <build> |
42 | | - <plugins> |
43 | | - <plugin> |
44 | | - <groupId>org.apache.maven.plugins</groupId> |
45 | | - <artifactId>maven-surefire-plugin</artifactId> |
46 | | - <version>2.9</version> |
47 | | - <configuration> |
48 | | - <skipTests>true</skipTests> |
49 | | - </configuration> |
50 | | - </plugin> |
51 | | - <plugin> |
52 | | - <groupId>org.apache.maven.plugins</groupId> |
53 | | - <artifactId>maven-compiler-plugin</artifactId> |
54 | | - <version>2.3.2</version> |
55 | | - <configuration> |
56 | | - <debuglevel>none</debuglevel> |
57 | | - <optimize>true</optimize> |
58 | | - <source>1.6</source> |
59 | | - <target>1.6</target> |
60 | | - </configuration> |
61 | | - </plugin> |
62 | | - <plugin> |
63 | | - <groupId>org.apache.maven.plugins</groupId> |
64 | | - <artifactId>maven-source-plugin</artifactId> |
65 | | - <version>2.1.2</version> |
66 | | - <executions> |
67 | | - <execution> |
68 | | - <id>attach-sources</id> |
69 | | - <phase>verify</phase> |
70 | | - <goals> |
71 | | - <goal>jar-no-fork</goal> |
72 | | - </goals> |
73 | | - </execution> |
74 | | - </executions> |
75 | | - </plugin> |
76 | | - </plugins> |
77 | | - </build> |
78 | | - <description>high performance memcached java client</description> |
79 | | -</project> |
| 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/xsd/maven-4.0.0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + |
| 4 | + <groupId>com.whalin</groupId> |
| 5 | + <artifactId>Memcached-Java-Client</artifactId> |
| 6 | + <version>3.0.0</version> |
| 7 | + <packaging>jar</packaging> |
| 8 | + |
| 9 | + <name>Memcached-Java-Client</name> |
| 10 | + <description>high performance memcached java client</description> |
| 11 | + <issueManagement> |
| 12 | + <url>https://github.com/gwhalin/Memcached-Java-Client/issues</url> |
| 13 | + <system>github</system> |
| 14 | + </issueManagement> |
| 15 | + <organization> |
| 16 | + <name>Schooner Information Technology</name> |
| 17 | + <url>http://www.schoonerinfotech.com/</url> |
| 18 | + </organization> |
| 19 | + <url>https://github.com/gwhalin/Memcached-Java-Client</url> |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>LGPLv3</name> |
| 23 | + <url>http://www.gnu.org/licenses/gpl-3.0.html</url> |
| 24 | + <distribution>repo</distribution> |
| 25 | + </license> |
| 26 | + </licenses> |
| 27 | + <scm> |
| 28 | + < connection>scm:git: [email protected]:gwhalin/Memcached-Java-Client.git</ connection> |
| 29 | + < developerConnection>scm:git: [email protected]:gwhalin/Memcached-Java-Client.git</ developerConnection> |
| 30 | + <tag>Performance</tag> |
| 31 | + < url> [email protected]:gwhalin/Memcached-Java-Client.git</ url> |
| 32 | + </scm> |
| 33 | + |
| 34 | + <developers> |
| 35 | + <developer> |
| 36 | + <id>gwhalin</id> |
| 37 | + <name>Greg Whalin</name> |
| 38 | + |
| 39 | + </developer> |
| 40 | + <developer> |
| 41 | + <id>newroot</id> |
| 42 | + <name>Xingen Wang</name> |
| 43 | + |
| 44 | + </developer> |
| 45 | + <developer> |
| 46 | + <id>jowett</id> |
| 47 | + <name>Meng Li</name> |
| 48 | + |
| 49 | + </developer> |
| 50 | + </developers> |
| 51 | + |
| 52 | + <properties> |
| 53 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 54 | + </properties> |
| 55 | + |
| 56 | + <dependencies> |
| 57 | + <dependency> |
| 58 | + <groupId>junit</groupId> |
| 59 | + <artifactId>junit</artifactId> |
| 60 | + <version>3.8.1</version> |
| 61 | + <scope>test</scope> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>commons-pool</groupId> |
| 65 | + <artifactId>commons-pool</artifactId> |
| 66 | + <version>1.5.6</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.slf4j</groupId> |
| 70 | + <artifactId>slf4j-api</artifactId> |
| 71 | + <version>1.6.4</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.slf4j</groupId> |
| 75 | + <artifactId>slf4j-simple</artifactId> |
| 76 | + <version>1.6.4</version> |
| 77 | + <scope>provided</scope> |
| 78 | + </dependency> |
| 79 | + </dependencies> |
| 80 | + <build> |
| 81 | + <plugins> |
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.maven.plugins</groupId> |
| 84 | + <artifactId>maven-surefire-plugin</artifactId> |
| 85 | + <version>2.9</version> |
| 86 | + <configuration> |
| 87 | + <skipTests>true</skipTests> |
| 88 | + </configuration> |
| 89 | + </plugin> |
| 90 | + <plugin> |
| 91 | + <groupId>org.apache.maven.plugins</groupId> |
| 92 | + <artifactId>maven-compiler-plugin</artifactId> |
| 93 | + <version>2.3.2</version> |
| 94 | + <configuration> |
| 95 | + <debuglevel>none</debuglevel> |
| 96 | + <optimize>true</optimize> |
| 97 | + <source>1.6</source> |
| 98 | + <target>1.6</target> |
| 99 | + </configuration> |
| 100 | + </plugin> |
| 101 | + <plugin> |
| 102 | + <groupId>org.apache.maven.plugins</groupId> |
| 103 | + <artifactId>maven-source-plugin</artifactId> |
| 104 | + <version>2.1.2</version> |
| 105 | + <executions> |
| 106 | + <execution> |
| 107 | + <id>attach-sources</id> |
| 108 | + <phase>verify</phase> |
| 109 | + <goals> |
| 110 | + <goal>jar-no-fork</goal> |
| 111 | + </goals> |
| 112 | + </execution> |
| 113 | + </executions> |
| 114 | + </plugin> |
| 115 | + <plugin> |
| 116 | + <groupId>org.apache.maven.plugins</groupId> |
| 117 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 118 | + <configuration> |
| 119 | + <locale>en_US</locale> |
| 120 | + </configuration> |
| 121 | + <executions> |
| 122 | + <execution> |
| 123 | + <id>attach-javadocs</id> |
| 124 | + <goals> |
| 125 | + <goal>jar</goal> |
| 126 | + </goals> |
| 127 | + </execution> |
| 128 | + </executions> |
| 129 | + </plugin> |
| 130 | + <plugin> |
| 131 | + <groupId>org.apache.maven.plugins</groupId> |
| 132 | + <artifactId>maven-gpg-plugin</artifactId> |
| 133 | + <executions> |
| 134 | + <execution> |
| 135 | + <id>sign-artifacts</id> |
| 136 | + <phase>verify</phase> |
| 137 | + <goals> |
| 138 | + <goal>sign</goal> |
| 139 | + </goals> |
| 140 | + </execution> |
| 141 | + </executions> |
| 142 | + </plugin> |
| 143 | + </plugins> |
| 144 | + </build> |
| 145 | + <reporting> |
| 146 | + <plugins> |
| 147 | + <plugin> |
| 148 | + <groupId>org.apache.maven.plugins</groupId> |
| 149 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 150 | + </plugin> |
| 151 | + </plugins> |
| 152 | + </reporting> |
| 153 | + <parent> |
| 154 | + <groupId>org.sonatype.oss</groupId> |
| 155 | + <artifactId>oss-parent</artifactId> |
| 156 | + <version>7</version> |
| 157 | + </parent> |
| 158 | +</project> |
0 commit comments