Skip to content

Commit 79e78b1

Browse files
Release v2.0.0
1 parent 148221a commit 79e78b1

File tree

473 files changed

+515
-506
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

473 files changed

+515
-506
lines changed

pom.xml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
</licenses>
4545

4646
<scm>
47-
<connection>scm:git:git@git.oschina.net:suninformation/ymate-platform-v2.git</connection>
48-
<developerConnection>scm:git:git@git.oschina.net:suninformation/ymate-platform-v2.git</developerConnection>
49-
<url>git@git.oschina.net:suninformation/ymate-platform-v2.git</url>
47+
<connection>scm:git:git@github.com:suninformation/ymate-platform-v2.git</connection>
48+
<developerConnection>scm:git:git@github.com:suninformation/ymate-platform-v2.git</developerConnection>
49+
<url>git@github.com:suninformation/ymate-platform-v2.git</url>
5050
</scm>
5151

5252
<properties>
@@ -65,6 +65,15 @@
6565
<target>1.6</target>
6666
</configuration>
6767
</plugin>
68+
<!-- Javadoc -->
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-javadoc-plugin</artifactId>
72+
<version>2.9.1</version>
73+
<configuration>
74+
<aggregate>true</aggregate>
75+
</configuration>
76+
</plugin>
6877
<!-- Test -->
6978
<plugin>
7079
<groupId>org.apache.maven.plugins</groupId>

src/main/resources/META-INF/ymp-conf.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ymp.dev_mode=true
77
# \u6846\u67B6\u81EA\u52A8\u626B\u63CF\u7684\u5305\u8DEF\u5F84\u96C6\u5408\uFF0C\u591A\u4E2A\u5305\u540D\u4E4B\u95F4\u7528'|'\u5206\u9694\uFF0C\u9ED8\u8BA4\u5DF2\u5305\u542Bnet.ymate.platform\u5305\uFF0C\u5176\u5B50\u5305\u4E5F\u5C06\u88AB\u626B\u63CF
88
ymp.autoscan_packages=
99
# \u5305\u6587\u4EF6\u6392\u9664\u5217\u8868\uFF0C\u591A\u4E2A\u6587\u4EF6\u540D\u79F0\u4E4B\u95F4\u7528'|'\u5206\u9694\uFF0C\u88AB\u5305\u542B\u7684JAR\u6216ZIP\u6587\u4EF6\u5728\u626B\u63CF\u8FC7\u7A0B\u4E2D\u5C06\u88AB\u5FFD\u7565
10-
ymp.excluded_files=ymate-platform-log-*|ymate-platform-cache-2.0-SNAPSHOT.jar
10+
ymp.excluded_files=ymate-platform-log-*|ymate-platform-cache-2.0.0.jar
1111
# \u6A21\u5757\u6392\u9664\u5217\u8868\uFF0C\u591A\u4E2A\u6A21\u5757\u540D\u79F0\u6216\u7C7B\u540D\u4E4B\u95F4\u7528'|'\u5206\u9694\uFF0C\u88AB\u5305\u542B\u7684\u6A21\u5757\u5728\u52A0\u8F7D\u8FC7\u7A0B\u4E2D\u5C06\u88AB\u5FFD\u7565
1212
ymp.excluded_modules=net.ymate.platform.plugin.Plugins|plugin
1313
# \u56FD\u9645\u5316\u8D44\u6E90\u9ED8\u8BA4\u8BED\u8A00\u8BBE\u7F6E\uFF0C\u53EF\u9009\u53C2\u6570\uFF0C\u9ED8\u8BA4\u91C7\u7528\u7CFB\u7EDF\u73AF\u5883\u8BED\u8A00

ymate-platform-cache/README.md

Lines changed: 2 additions & 2 deletions

ymate-platform-cache/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<modelVersion>4.0.0</modelVersion>
99

1010
<artifactId>ymate-platform-cache</artifactId>
11-
<version>2.0-SNAPSHOT</version>
11+
<version>2.0.0</version>
1212
<packaging>jar</packaging>
1313

1414
<name>ymate-platform-cache</name>
@@ -63,12 +63,12 @@
6363
<dependency>
6464
<groupId>net.ymate.platform</groupId>
6565
<artifactId>ymate-platform-core</artifactId>
66-
<version>2.0-SNAPSHOT</version>
66+
<version>2.0.0</version>
6767
</dependency>
6868
<dependency>
6969
<groupId>net.ymate.platform</groupId>
7070
<artifactId>ymate-platform-persistence-redis</artifactId>
71-
<version>2.0-SNAPSHOT</version>
71+
<version>2.0.0</version>
7272
<scope>provided</scope>
7373
</dependency>
7474
<dependency>

ymate-platform-cache/src/main/java/net/ymate/platform/cache/CacheElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2007-2016 the original author or authors.
2+
* Copyright 2007-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

ymate-platform-cache/src/main/java/net/ymate/platform/cache/CacheException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2007-2016 the original author or authors.
2+
* Copyright 2007-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

ymate-platform-cache/src/main/java/net/ymate/platform/cache/Caches.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2007-2016 the original author or authors.
2+
* Copyright 2007-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -40,7 +40,7 @@
4040
@Module
4141
public class Caches implements IModule, ICaches {
4242

43-
public static final Version VERSION = new Version(2, 0, 0, Caches.class.getPackage().getImplementationVersion(), Version.VersionType.GA);
43+
public static final Version VERSION = new Version(2, 0, 0, Caches.class.getPackage().getImplementationVersion(), Version.VersionType.Release);
4444

4545
private final Log _LOG = LogFactory.getLog(Caches.class);
4646

ymate-platform-cache/src/main/java/net/ymate/platform/cache/ICache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2007-2016 the original author or authors.
2+
* Copyright 2007-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

ymate-platform-cache/src/main/java/net/ymate/platform/cache/ICacheEventListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2007-2016 the original author or authors.
2+
* Copyright 2007-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

ymate-platform-cache/src/main/java/net/ymate/platform/cache/ICacheModuleCfg.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2007-2016 the original author or authors.
2+
* Copyright 2007-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)