Skip to content

Commit 77fa7d0

Browse files
committed
releng: project setup as a canonical git project
1 parent 0d70a43 commit 77fa7d0

File tree

3 files changed

+22
-21
lines changed

3 files changed

+22
-21
lines changed

NOTICE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
MyBatis-Memcached cache
2+
Copyright 2010-2013
3+
14
This product includes software developed by
25
The MyBatis Team (http://mybatis.org/).
36

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Memcached support for MyBatis Cache

pom.xml

Lines changed: 18 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -19,50 +19,47 @@
1919
version: $Id$
2020
-->
2121
<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">
22+
<modelVersion>4.0.0</modelVersion>
2223

2324
<parent>
2425
<groupId>org.mybatis</groupId>
2526
<artifactId>mybatis-parent</artifactId>
26-
<version>15</version>
27+
<version>17-SNAPSHOT</version>
2728
</parent>
2829

29-
<modelVersion>4.0.0</modelVersion>
3030
<groupId>org.mybatis.caches</groupId>
3131
<artifactId>mybatis-memcached</artifactId>
32+
<version>1.0.0-beta2-SNAPSHOT</version>
3233
<packaging>jar</packaging>
34+
3335
<name>MyBatis Caches :: Memcached</name>
34-
<version>1.0.0-beta2-SNAPSHOT</version>
3536
<description>Memcached support for MyBatis Cache</description>
3637
<url>http://www.mybatis.org/caches/memcached/</url>
3738

3839
<scm>
39-
<url>scm:svn:http://mybatis.googlecode.com/svn/sub-projects/caches/trunk/memcached</url>
40-
<connection>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/caches/trunk/memcached</connection>
41-
<developerConnection>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/caches/trunk/memcached</developerConnection>
40+
<url>http://github.com/mybatis/memcached-cache</url>
41+
<connection>scm:git:ssh://github.com/mybatis/memcached-cache.git</connection>
42+
<developerConnection>scm:git:git+ssh://[email protected]/mybatis/memcached-cache.git</developerConnection>
43+
<tag>HEAD</tag>
4244
</scm>
45+
<issueManagement>
46+
<system>GitHub Issue Management</system>
47+
<url>https://github.com/mybatis/memcached-cache/issues</url>
48+
</issueManagement>
49+
<ciManagement>
50+
<system>Travis CI</system>
51+
<url>https://travis-ci.org/memcached-cache/guice</url>
52+
</ciManagement>
4353
<distributionManagement>
44-
<!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
4554
<site>
46-
<id>mybatis.site</id>
47-
<!--
48-
| make it overridible, FTP is terribly slow when launched from Maven Wagon
49-
| an alternative strategy could be deploying the site locally
50-
|
51-
| -Dsite.deploymentUrl=file://...
52-
|
53-
| then async redeploying it via Filezilla/whatelese
54-
-->
55-
<url>${site.deploymentUrl}</url>
55+
<id>github</id>
56+
<url>gitsite:[email protected]/mybatis/memcached-cache.git</url>
5657
</site>
5758
</distributionManagement>
5859

5960
<properties>
6061
<findbugs.onlyAnalyze>org.mybatis.caches.memcached.*</findbugs.onlyAnalyze>
6162
<gcu.product>Cache</gcu.product>
62-
<!--
63-
| see distributionManagement.site.url
64-
-->
65-
<site.deploymentUrl>ftp://${mybatis.host}/caches/memcached/</site.deploymentUrl>
6663
</properties>
6764

6865
<dependencies>

0 commit comments

Comments
 (0)